Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for discoveryAddress (0.16 sec)

  1. pkg/config/mesh/mesh_test.go

    	defaultDiscovery := config.DefaultConfig.DiscoveryAddress
    
    	t.Run("apply single", func(t *testing.T) {
    		mc, err := mesh.ApplyProxyConfig("discoveryAddress: foo", config)
    		if err != nil {
    			t.Fatal(err)
    		}
    		if mc.DefaultConfig.DiscoveryAddress != "foo" {
    			t.Fatalf("expected discoveryAddress: foo, got %q", mc.DefaultConfig.DiscoveryAddress)
    		}
    	})
    
    	t.Run("apply again", func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/configmap.yaml

          {{- end }}
          {{- if .Values.global.remotePilotAddress }}
          {{- if .Values.pilot.enabled }}
          discoveryAddress: {{ printf "istiod-remote.%s.svc" .Release.Namespace }}:15012
          {{- else }}
          discoveryAddress: {{ printf "istiod.%s.svc" .Release.Namespace }}:15012
          {{- end }}
          {{- else }}
          discoveryAddress: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}.{{.Release.Namespace}}.svc:15012
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inputs/proxy-override-runas.yaml.34.mesh.gen.yaml

    defaultConfig:
      discoveryAddress: istiod.istio-system.svc:15012
    defaultProviders:
      metrics:
      - prometheus
    enablePrometheusMerge: true
    rootNamespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 191 bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/configmap.yaml

          {{- end }}
          {{- if .Values.global.remotePilotAddress }}
          {{- if .Values.pilot.enabled }}
          discoveryAddress: {{ printf "istiod-remote.%s.svc" .Release.Namespace }}:15012
          {{- else }}
          discoveryAddress: {{ printf "istiod.%s.svc" .Release.Namespace }}:15012
          {{- end }}
          {{- else }}
          discoveryAddress: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}.{{.Release.Namespace}}.svc:15012
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/config/config.go

    		config.DiscoveryAddress = v
    	}
    	if v, f := annos[annotation.SidecarStatusPort.Name]; f {
    		p, err := strconv.Atoi(v)
    		if err != nil {
    			log.Errorf("Invalid annotation %v=%v: %v", annotation.SidecarStatusPort.Name, v, err)
    		}
    		config.StatusPort = int32(p)
    	}
    	return config
    }
    
    func GetPilotSan(discoveryAddress string) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.mesh.gen.yaml

    defaultConfig:
      discoveryAddress: istiod.istio-system.svc:15012
    defaultProviders:
      metrics:
      - prometheus
    enablePrometheusMerge: true
    rootNamespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 191 bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inputs/hello-openshift.yaml.47.mesh.gen.yaml

    defaultConfig:
      discoveryAddress: istiod.istio-system.svc:15012
    defaultProviders:
      metrics:
      - prometheus
    enablePrometheusMerge: true
    rootNamespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 191 bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inputs/merge-probers.yaml.43.mesh.gen.yaml

    defaultConfig:
      discoveryAddress: istiod.istio-system.svc:15012
    defaultProviders:
      metrics:
      - prometheus
    enablePrometheusMerge: true
    rootNamespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 191 bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/server_test.go

    }
    
    func TestGetDNSNames(t *testing.T) {
    	tests := []struct {
    		name             string
    		customHost       string
    		discoveryAddress string
    		revision         string
    		sans             []string
    	}{
    		{
    			name:             "no customHost",
    			customHost:       "",
    			discoveryAddress: "istiod.istio-system.svc.cluster.local",
    			revision:         "default",
    			sans: []string{
    				"istio-pilot.istio-system.svc",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. 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)
Back to top