Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for autoInject (0.13 sec)

  1. manifests/charts/istio-control/istio-discovery/values.yaml

        # for more detail.
        priorityClassName: ""
    
        proxy:
          image: proxyv2
    
          # This controls the 'policy' in the sidecar injector.
          autoInject: enabled
    
          # CAUTION: It is important to ensure that all Istio helm charts specify the same clusterDomain value
          # cluster domain. Default value is "cluster.local".
          clusterDomain: "cluster.local"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/values.yaml

        # for more detail.
        priorityClassName: ""
        proxy:
          image: proxyv2
          # This controls the 'policy' in the sidecar injector.
          autoInject: enabled
          # CAUTION: It is important to ensure that all Istio helm charts specify the same clusterDomain value
          # cluster domain. Default value is "cluster.local".
          clusterDomain: "cluster.local"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. pkg/kube/inject/inject.go

    				inject = true
    				useDefault = false
    				break
    			}
    		}
    	}
    
    	var required bool
    	switch config.Policy {
    	default: // InjectionPolicyOff
    		log.Errorf("Illegal value for autoInject:%s, must be one of [%s,%s]. Auto injection disabled!",
    			config.Policy, InjectionPolicyDisabled, InjectionPolicyEnabled)
    		required = false
    	case InjectionPolicyDisabled:
    		if useDefault {
    			required = false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

      int32 targetPort = 4;
    
      // Protocol name.
      string protocol = 5;
    }
    
    // Configuration for Proxy.
    message ProxyConfig {
      // Controls the 'policy' in the sidecar injector.
      string autoInject = 4;
    
      // Domain for the cluster, default: "cluster.local".
      //
      // K8s allows this to be customized, see https://kubernetes.io/docs/tasks/administer-cluster/dns-custom-nameservers/
      string clusterDomain = 5;
    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

    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	// Controls the 'policy' in the sidecar injector.
    	AutoInject string `protobuf:"bytes,4,opt,name=autoInject,proto3" json:"autoInject,omitempty"`
    	// Domain for the cluster, default: "cluster.local".
    	//
    	// K8s allows this to be customized, see https://kubernetes.io/docs/tasks/administer-cluster/dns-custom-nameservers/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top