Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 121 for discoveryAddress (0.21 sec)

  1. istioctl/pkg/kubeinject/testdata/mesh-config.yaml

      statsdUdpAddress: ""
      #
      # Mutual TLS authentication between sidecars and istio control plane.
      controlPlaneAuthPolicy: NONE
      #
      # Address where istio Pilot service is running
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. pkg/bootstrap/option/instances_test.go

    		expectError bool
    		expected    any
    	}{
    		{
    			testName: "proxy config",
    			key:      "config",
    			option:   option.ProxyConfig(&model.NodeMetaProxyConfig{DiscoveryAddress: "fake"}),
    			expected: &model.NodeMetaProxyConfig{DiscoveryAddress: "fake"},
    		},
    		{
    			testName: "pilotSAN",
    			key:      "pilot_SAN",
    			option:   option.PilotSubjectAltName([]string{"fake"}),
    			expected: `[{"exact":"fake"}]`,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/options/security.go

    	default:
    		log.Info("Using existing certs")
    	}
    
    	o := secOpt
    
    	// If not set explicitly, default to the discovery address.
    	if o.CAEndpoint == "" {
    		o.CAEndpoint = proxyConfig.DiscoveryAddress
    		o.CAEndpointSAN = istiodSAN.Get()
    	}
    
    	o.CredIdentityProvider = credIdentityProvider
    	credFetcher, err := credentialfetcher.NewCredFetcher(credFetcherTypeEnv, o.TrustDomain, jwtPath, o.CredIdentityProvider)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. tests/integration/pilot/revisions/revision_tag_test.go

    	t.Helper()
    	pcArgs := []string{"pc", "bootstrap", podName, "-n", podNamespace}
    	bootstrapConfig, _ := i.InvokeOrFail(t, pcArgs)
    	expected := fmt.Sprintf("\"discoveryAddress\": \"istiod-%s.istio-system.svc:15012\"", revision)
    	if !strings.Contains(bootstrapConfig, expected) {
    		t.Errorf("expected revision %q in bootstrap config, did not find", revision)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pilot/pkg/model/cluster_local.go

    		defaultClusterLocalHosts = append(defaultClusterLocalHosts, host.Name(s+"."+domainSuffix))
    	}
    
    	if discoveryHost, _, err := e.GetDiscoveryAddress(); err != nil {
    		log.Errorf("failed to make discoveryAddress cluster-local: %v", err)
    	} else {
    		if !strings.HasSuffix(string(discoveryHost), domainSuffix) {
    			discoveryHost += host.Name("." + domainSuffix)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. pkg/bootstrap/config.go

    	opts := make([]option.Instance, 0)
    
    	opts = append(opts, option.ProxyConfig(config),
    		option.Cluster(getServiceCluster(metadata)),
    		option.PilotGRPCAddress(config.DiscoveryAddress),
    		option.DiscoveryAddress(config.DiscoveryAddress),
    		option.StatsdAddress(config.StatsdUdpAddress),
    		option.XDSRootCert(metadata.XDSRootCert))
    
    	// Add tracing options.
    	if config.Tracing != nil {
    		isH2 := false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. pkg/bootstrap/testdata/default_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. pkg/bootstrap/testdata/tracing_datadog_golden.json

      },
      "layered_runtime": {
          "layers": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/testdata/input/ingress.log

    accessLogFile: /dev/stdout
    accessLogFormat: ""
    defaultConfig:
      concurrency: 2
      configPath: ./etc/istio/proxy
      connectTimeout: 10s
      controlPlaneAuthPolicy: NONE
      discoveryAddress: istiod.istio-system.svc:15012
      drainDuration: 45s
      parentShutdownDuration: 1m0s
      proxyAdminPort: 15000
      proxyMetadata:
        DNS_AGENT: ""
      serviceCluster: istio-proxy
      tracing:
        zipkin:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K bytes
    - Viewed (0)
  10. pkg/bootstrap/testdata/tracing_none_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top