Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for externalistiod (0.46 sec)

  1. pkg/kube/multicluster/secretcontroller.go

    	// Istiod is running on the external cluster. Use the inCluster credentials to
    	// create a kubeclientset
    	if features.LocalClusterSecretWatcher && features.ExternalIstiod {
    		config, err := kube.InClusterConfig(configOverrides...)
    		if err != nil {
    			log.Errorf("Could not get istiod incluster configuration: %v", err)
    			return nil
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/config.go

    	IntegrationTestExternalIstiodPrimaryDefaultsIOP = "tests/integration/iop-externalistiod-primary-integration-test-defaults.yaml"
    
    	// IntegrationTestExternalIstiodConfigDefaultsIOP is the path of the default IstioOperator spec to use
    	// on external istiod config clusters for integration tests
    	IntegrationTestExternalIstiodConfigDefaultsIOP = "tests/integration/iop-externalistiod-config-integration-test-defaults.yaml"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    func (m *Multicluster) checkShouldLead(client kubelib.Client, systemNamespace string, stop <-chan struct{}) bool {
    	var res bool
    	if features.ExternalIstiod {
    		b := backoff.NewExponentialBackOff(backoff.DefaultOption())
    		ctx, cancel := context.WithCancel(context.Background())
    		go func() {
    			select {
    			case <-stop:
    				cancel()
    			case <-ctx.Done():
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. pilot/pkg/features/pilot.go

    	ClusterName = env.Register("CLUSTER_ID", constants.DefaultClusterName,
    		"Defines the cluster and service registry that this Istiod instance belongs to").Get()
    
    	ExternalIstiod = env.Register("EXTERNAL_ISTIOD", false,
    		"If this is set to true, one Istiod will control remote clusters including CA.").Get()
    
    	EnableCAServer = env.Register("ENABLE_CA_SERVER", true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		{"Values.global.centralIstiod", "Values.global.externalIstiod", false},
    		{"Values.global.arch", "the affinity of k8s settings", nil},
    	}
    
    	failHardSettings := []deprecatedSettings{
    		{"Values.grafana.enabled", "the samples/addons/ deployments", false},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/values.yaml

        caAddress: ""
        # Configure a remote cluster data plane controlled by an external istiod.
        # When set to true, istiod is not deployed locally and only a subset of the other
        # discovery charts are enabled.
        externalIstiod: true
        # Configure a remote cluster as the config cluster for an external istiod.
        configCluster: false
        # configValidation enables the validation webhook for Istio configuration.
        configValidation: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/values.yaml

        # Configure a remote cluster data plane controlled by an external istiod.
        # When set to true, istiod is not deployed locally and only a subset of the other
        # discovery charts are enabled.
        externalIstiod: false
    
        # Configure a remote cluster as the config cluster for an external istiod.
        configCluster: false
    
        # configValidation enables the validation webhook for Istio configuration.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. Makefile.core.mk

    	# copy istio-discovery values, but apply some local customizations
    	cp manifests/charts/istio-control/istio-discovery/values.yaml manifests/charts/istiod-remote/
    	yq -i '.defaults.telemetry.enabled=false | .defaults.global.externalIstiod=true | .defaults.global.omitSidecarInjectorConfigMap=true | .defaults.pilot.configMap=false' manifests/charts/istiod-remote/values.yaml
    	warning=$$(cat manifests/helm-profiles/warning-edit.txt | sed ':a;N;$$!ba;s/\n/\\n/g') ; \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/kube.go

    	if i.ctx.Environment().IsMultiCluster() {
    		if i.externalControlPlane || i.cfg.IstiodlessRemotes {
    			// Enable namespace controller writing to remote clusters
    			args.AppendSet("values.pilot.env.EXTERNAL_ISTIOD", "true")
    		}
    
    		// Set the clusterName for the local cluster.
    		// This MUST match the clusterName in the remote secret for this cluster.
    		clusterName := c.Name()
    		if !c.IsConfig() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top