Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for EnvoyMetricsServiceTLS (0.15 sec)

  1. pkg/bootstrap/option/instances_test.go

    		},
    		{
    			testName: "envoy metrics tls nil",
    			key:      "envoy_metrics_service_tls",
    			option:   option.EnvoyMetricsServiceTLS(nil, &model.BootstrapNodeMetadata{}),
    			expected: nil,
    		},
    		{
    			testName: "envoy metrics tls",
    			key:      "envoy_metrics_service_tls",
    			option: option.EnvoyMetricsServiceTLS(&networkingAPI.ClientTLSSettings{
    				Mode: networkingAPI.ClientTLSSettings_ISTIO_MUTUAL,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  2. pkg/bootstrap/option/instances.go

    }
    
    func EnvoyMetricsServiceAddress(value string) Instance {
    	return newOptionOrSkipIfZero("envoy_metrics_service_address", value).withConvert(addressConverter(value))
    }
    
    func EnvoyMetricsServiceTLS(value *networkingAPI.ClientTLSSettings, metadata *model.BootstrapNodeMetadata) Instance {
    	return newOptionOrSkipIfZero("envoy_metrics_service_tls", 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. pkg/bootstrap/config.go

    	// Add options for Envoy metrics.
    	if config.EnvoyMetricsService != nil && config.EnvoyMetricsService.Address != "" {
    		opts = append(opts, option.EnvoyMetricsServiceAddress(config.EnvoyMetricsService.Address),
    			option.EnvoyMetricsServiceTLS(config.EnvoyMetricsService.TlsSettings, metadata),
    			option.EnvoyMetricsServiceTCPKeepalive(config.EnvoyMetricsService.TcpKeepalive))
    	} else if config.EnvoyMetricsServiceAddress != "" { // nolint: staticcheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top