Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for proxyAdminPort (0.33 sec)

  1. pkg/bootstrap/testdata/stats_compression_unknown_golden.json

      },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/stats_compression_zstd_golden.json

      },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

            - --envoyAccessLogServiceAddress
            - "{{ .ProxyConfig.GetEnvoyAccessLogService.GetAddress }}"
          {{- end }}
            - --proxyAdminPort
            - "{{ .ProxyConfig.ProxyAdminPort }}"
            {{ if gt .ProxyConfig.Concurrency 0 -}}
            - --concurrency
            - "{{ .ProxyConfig.Concurrency }}"
            {{ end -}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

            - --envoyAccessLogServiceAddress
            - "{{ .ProxyConfig.GetEnvoyAccessLogService.GetAddress }}"
          {{- end }}
            - --proxyAdminPort
            - "{{ .ProxyConfig.ProxyAdminPort }}"
            {{ if gt .ProxyConfig.Concurrency 0 -}}
            - --concurrency
            - "{{ .ProxyConfig.Concurrency }}"
            {{ end -}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

            - --envoyAccessLogServiceAddress
            - "{{ .ProxyConfig.GetEnvoyAccessLogService.GetAddress }}"
          {{- end }}
            - --proxyAdminPort
            - "{{ .ProxyConfig.ProxyAdminPort }}"
            {{ if gt .ProxyConfig.Concurrency 0 -}}
            - --concurrency
            - "{{ .ProxyConfig.Concurrency }}"
            {{ end -}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

            - --envoyAccessLogServiceAddress
            - "{{ .ProxyConfig.GetEnvoyAccessLogService.GetAddress }}"
          {{- end }}
            - --proxyAdminPort
            - "{{ .ProxyConfig.ProxyAdminPort }}"
            {{ if gt .ProxyConfig.Concurrency 0 -}}
            - --concurrency
            - "{{ .ProxyConfig.Concurrency }}"
            {{ end -}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. pkg/config/mesh/mesh.go

    		DrainDuration:            durationpb.New(45 * time.Second),
    		TerminationDrainDuration: durationpb.New(5 * time.Second),
    		ProxyAdminPort:           15000,
    		ControlPlaneAuthPolicy:   meshconfig.AuthenticationPolicy_MUTUAL_TLS,
    		DiscoveryAddress:         "istiod.istio-system.svc:15012",
    
    		// Code defaults
    		BinaryPath:     constants.BinaryPathFilename,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. pkg/istio-agent/agent.go

    		a.envoyOpts.ConfigCleanup = true
    	}
    
    	// Back-fill envoy options from proxy config options
    	a.envoyOpts.BinaryPath = a.proxyConfig.BinaryPath
    	a.envoyOpts.AdminPort = a.proxyConfig.ProxyAdminPort
    	a.envoyOpts.DrainDuration = a.proxyConfig.DrainDuration
    	a.envoyOpts.Concurrency = a.proxyConfig.Concurrency.GetValue()
    
    	// Checking only uid should be sufficient - but tests also run as root and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. pkg/istio-agent/agent_test.go

    		}, retry.Timeout(time.Second*150))
    	}
    	t.Run("Envoy lifecycle", func(t *testing.T) {
    		Setup(t, func(a AgentTest) AgentTest {
    			a.envoyEnable = true
    			a.ProxyConfig.StatusPort = 15020
    			a.ProxyConfig.ProxyAdminPort = 15000
    			a.AgentConfig.EnvoyPrometheusPort = 15090
    			a.AgentConfig.EnvoyStatusPort = 15021
    			a.AgentConfig.ProxyXDSDebugViaAgent = false // uses a fixed port
    			return a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. pkg/config/validation/agent/validation.go

    			errs = multierror.Append(errs, multierror.Prefix(err, fmt.Sprintf("invalid envoy access log service address %q:", config.EnvoyAccessLogService.Address)))
    		}
    	}
    
    	if err := ValidatePort(int(config.ProxyAdminPort)); err != nil {
    		errs = multierror.Append(errs, multierror.Prefix(err, "invalid proxy admin port:"))
    	}
    
    	if err := ValidateControlPlaneAuthPolicy(config.ControlPlaneAuthPolicy); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top