Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for envoyAccessLogService (0.3 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

        "global.proxy.accessLogFile" "meshConfig.accessLogFile"
        "global.proxy.concurrency" "meshConfig.defaultConfig.concurrency"
        "global.proxy.envoyAccessLogService" "meshConfig.defaultConfig.envoyAccessLogService"
        "global.proxy.envoyAccessLogService.enabled" "meshConfig.enableEnvoyAccessLogService"
        "global.proxy.envoyMetricsService" "meshConfig.defaultConfig.envoyMetricsService"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. pkg/model/proxy_test.go

    						EnvoyAccessLogService: &meshconfig.RemoteService{
    							Address: "address",
    							TlsSettings: &v1alpha3.ClientTLSSettings{
    								SubjectAltNames: []string{"san"},
    							},
    						},
    					}),
    				},
    			},
    			// nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/testdata/output/multi_line_entries.log

    2020-06-29T23:37:27.287895Z	info	Effective config: binaryPath: /usr/local/bin/envoy
    configPath: ./etc/istio/proxy
    discoveryAddress: istiod.istio-system.svc:15012
    drainDuration: 45s
    envoyAccessLogService: {}
    envoyMetricsService: {}
    parentShutdownDuration: 60s
    proxyAdminPort: 15000
    proxyMetadata:
      DNS_AGENT: ""
    serviceCluster: istio-ingressgateway
    statNameLength: 189
    statusPort: 15020
    tracing:
      zipkin:
        address: zipkin.istio-system:9411
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  4. pkg/kube/inject/template.go

    		pc.DiscoveryAddress = ""
    	}
    	if proto.Equal(pc.EnvoyMetricsService, defaults.EnvoyMetricsService) {
    		pc.EnvoyMetricsService = nil
    	}
    	if proto.Equal(pc.EnvoyAccessLogService, defaults.EnvoyAccessLogService) {
    		pc.EnvoyAccessLogService = nil
    	}
    	if proto.Equal(pc.Tracing, defaults.Tracing) {
    		pc.Tracing = nil
    	}
    	if pc.ProxyAdminPort == defaults.ProxyAdminPort {
    		pc.ProxyAdminPort = 0
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. operator/pkg/util/merge_iop.go

    	Sds                            *v1alpha13.SDS                          `json:"sds" patchStrategy:"replace"`
    	EnvoyAccessLogService          *v1alpha13.RemoteService                `json:"envoyAccessLogService" patchStrategy:"merge" patchMergeKey:"address"`
    	EnvoyMetricsService            *v1alpha13.RemoteService                `json:"envoyMetricsService" patchStrategy:"merge" patchMergeKey:"address"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 18:21:41 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		{"Values.global.proxy.concurrency", "meshConfig.defaultConfig.concurrency", uint32(0)},
    		{"Values.global.proxy.envoyAccessLogService", "meshConfig.defaultConfig.envoyAccessLogService", nil},
    		{"Values.global.proxy.envoyAccessLogService.enabled", "meshConfig.enableEnvoyAccessLogService", nil},
    		{"Values.global.proxy.envoyMetricsService", "meshConfig.defaultConfig.envoyMetricsService", nil},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. pkg/bootstrap/config.go

    	}
    
    	// Add options for Envoy access log.
    	if config.EnvoyAccessLogService != nil && config.EnvoyAccessLogService.Address != "" {
    		opts = append(opts, option.EnvoyAccessLogServiceAddress(config.EnvoyAccessLogService.Address),
    			option.EnvoyAccessLogServiceTLS(config.EnvoyAccessLogService.TlsSettings, metadata),
    			option.EnvoyAccessLogServiceTCPKeepalive(config.EnvoyAccessLogService.TcpKeepalive))
    	}
    
    	return opts, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. pkg/config/validation/agent/validation.go

    		}
    	}
    
    	if config.EnvoyAccessLogService != nil && config.EnvoyAccessLogService.Address != "" {
    		if err := ValidateProxyAddress(config.EnvoyAccessLogService.Address); err != nil {
    			errs = multierror.Append(errs, multierror.Prefix(err, fmt.Sprintf("invalid envoy access log service address %q:", config.EnvoyAccessLogService.Address)))
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. pkg/bootstrap/testdata/all_golden.json

    rvice-account"],"PROXY_CONFIG":{"binaryPath":"/usr/local/bin/envoy","configPath":"/tmp/bootstrap/all","controlPlaneAuthPolicy":"MUTUAL_TLS","customConfigFile":"envoy_bootstrap.json","discoveryAddress":"mypilot:15011","drainDuration":"5s","envoyAccessLogService":{"address":"accesslog-service:15000"},"envoyMetricsService":{"address":"metrics-service:15000","tlsSettings":{"caCertificates":"/etc/istio/ms/ca.pem","clientCertificate":"/etc/istio/ms/client.pem","mode":"MUTUAL","privateKey":"/etc/istio/...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. pkg/bootstrap/testdata/deferred_cluster_creation_golden.json

    _CONFIG":{"binaryPath":"/usr/local/bin/envoy","configPath":"/tmp/bootstrap/deferred_cluster_creation","controlPlaneAuthPolicy":"MUTUAL_TLS","customConfigFile":"envoy_bootstrap.json","discoveryAddress":"mypilot:15011","drainDuration":"5s","envoyAccessLogService":{"address":"accesslog-service:15000"},"envoyMetricsService":{"address":"metrics-service:15000","tlsSettings":{"caCertificates":"/etc/istio/ms/ca.pem","clientCertificate":"/etc/istio/ms/client.pem","mode":"MUTUAL","privateKey":"/etc/istio/...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top