Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for externalIstiod (0.35 sec)

  1. 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)
  2. 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)
  3. 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)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.BoolValue mountMtlsCerts = 60;
    
      // The address of the CA for CSR.
      string caAddress = 61;
    
      // Controls whether one external istiod is enabled.
      google.protobuf.BoolValue externalIstiod = 62;
    
      // Controls whether a remote cluster is the config cluster for an external istiod
      google.protobuf.BoolValue configCluster = 64;
    
      // The name of the CA for workloads.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	CaAddress string `protobuf:"bytes,61,opt,name=caAddress,proto3" json:"caAddress,omitempty"`
    	// Controls whether one external istiod is enabled.
    	ExternalIstiod *wrapperspb.BoolValue `protobuf:"bytes,62,opt,name=externalIstiod,proto3" json:"externalIstiod,omitempty"`
    	// Controls whether a remote cluster is the config cluster for an external istiod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  6. 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