Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for autoInject (0.15 sec)

  1. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. istioctl/pkg/injector/injector-list.go

    		revision := hook.ObjectMeta.GetLabels()[label.IoIstioRev.Name]
    		namespaces := getMatchingNamespaces(&hook, namespaces)
    		if len(namespaces) == 0 {
    			fmt.Fprintf(w, "%s\t%s\t%s\t%s\n", "DOES NOT AUTOINJECT", hook.Name, revision, injectedImages[revision])
    			continue
    		}
    		for _, namespace := range namespaces {
    			fmt.Fprintf(w, "%s\t%s\t%s\t%s\n", namespace.Name, hook.Name, revision, injectedImages[revision])
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 04 03:08:06 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. istioctl/pkg/tag/generate.go

    	}
    
    	values := fmt.Sprintf(`
    revision: %q
    revisionTags:
      - %s
    
    sidecarInjectorWebhook:
      enableNamespacesByDefault: %t
      objectSelector:
        enabled: true
        autoInject: true
    
    istiodRemote:
      injectionURL: %s
    `, config.Revision, config.Tag, opts.AutoInjectNamespaces, config.URL)
    
    	tagWebhookYaml, err := r.RenderManifestFiltered(values, func(tmplName string) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
Back to top