Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ENVOY_STATUS_PORT (0.13 sec)

  1. tools/packaging/common/gcp_envoy_bootstrap.json

          }
        ],
        "listeners":[
          {
            "address": {
               "socket_address": {
                 "protocol": "TCP",
                 "address": "{{ .wildcard }}",
                 "port_value": {{ .envoy_status_port }}
               }
            },
            "filter_chains": [
              {
                "filters": [
                  {
                    "name": "envoy.filters.network.http_connection_manager",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/bootstrap/option/instances.go

    }
    
    func EnvoyStatsMatcherInclusionRegexp(value []string) Instance {
    	return newStringArrayOptionOrSkipIfEmpty("inclusionRegexps", value)
    }
    
    func EnvoyStatusPort(value int) Instance {
    	return newOption("envoy_status_port", value)
    }
    
    func EnvoyPrometheusPort(value int) Instance {
    	return newOption("envoy_prometheus_port", value)
    }
    
    func STSPort(value int) Instance {
    	return newOption("sts_port", value)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/options/options.go

    	enableWDSEnv = env.Register("PEER_METADATA_DISCOVERY", false,
    		"If set to true, enable the peer metadata discovery extension in Envoy").Get()
    
    	envoyStatusPortEnv = env.Register("ENVOY_STATUS_PORT", 15021,
    		"Envoy health status port value").Get()
    	envoyPrometheusPortEnv = env.Register("ENVOY_PROMETHEUS_PORT", 15090,
    		"Envoy prometheus redirection port value").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top