Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 351 for injecting (0.16 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/revision-tags.yaml

      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: In
          values:
          - "{{ $tagName }}"
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: sidecar.istio.io/inject
          operator: NotIn
          values:
          - "false"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. istioctl/pkg/checkinject/checkinject.go

      istioctl x check-inject deployment/details-v1
    
      # Check the injection status of a pod under a deployment in namespace test
      istioctl x check-inject deployment/details-v1 -n test
    
      # Check the injection status of label pairs in a specific namespace before actual injection 
      istioctl x check-inject -n test -l app=helloworld,version=v1
    `,
    		Args: func(cmd *cobra.Command, args []string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. istioctl/pkg/injector/injector-list_test.go

    		name     string
    		pod      *corev1.Pod
    		expected bool
    	}{
    		{
    			name: "Injection disabled by annotation",
    			pod: &corev1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Annotations: map[string]string{
    						annotation.SidecarInject.Name: "false",
    					},
    				},
    			},
    			expected: true,
    		},
    		{
    			name: "Injection enabled by annotation",
    			pod: &corev1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 04:33:57 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/sidecarinjector.go

    	injectPath := args.InjectionOptions.InjectionDirectory
    	if injectPath == "" || !injectionEnabled.Get() {
    		log.Infof("Skipping sidecar injector, injection path is missing or disabled.")
    		return nil, nil
    	}
    
    	// If the injection config exists either locally or remotely, we will set up injection.
    	var watcher inject.Watcher
    	if _, err := os.Stat(filepath.Join(injectPath, "config")); !os.IsNotExist(err) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 20:39:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. manifests/charts/default/templates/mutatingwebhook.yaml

      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: In
          values:
          - "default"
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: sidecar.istio.io/inject
          operator: NotIn
          values:
          - "false"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. pilot/pkg/features/xds.go

    	// Pilot injects this outbound filter if the service port name is `redis`.
    	EnableRedisFilter = env.Register(
    		"PILOT_ENABLE_REDIS_FILTER",
    		false,
    		"EnableRedisFilter enables injection of `envoy.filters.network.redis_proxy` in the filter chain.",
    	).Get()
    
    	// EnableMongoFilter enables injection of `envoy.filters.network.mongo_proxy` in the filter chain.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 06:18:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/util/in_mesh.go

    		return true
    	}
    
    	// If Pod has labels, return the injection label value
    	if piv, ok := getPodSidecarInjectionStatus(labels); ok {
    		return piv
    	}
    
    	// If Pod has annotation, return the injection annotation value
    	if piv, ok := getPodSidecarInjectionStatus(annos); ok {
    		return piv
    	}
    
    	// In case the annotation is not present but there is a auto-injection label on the namespace,
    	// return the auto-injection label status
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/all.go

    		&gateway.IngressGatewayPortAnalyzer{},
    		&gateway.CertificateAnalyzer{},
    		&gateway.SecretAnalyzer{},
    		&gateway.ConflictingGatewayAnalyzer{},
    		&injection.Analyzer{},
    		&injection.ImageAnalyzer{},
    		&injection.ImageAutoAnalyzer{},
    		&k8sgateway.SelectorAnalyzer{},
    		&multicluster.MeshNetworksAnalyzer{},
    		&service.PortNameAnalyzer{},
    		&sidecar.SelectorAnalyzer{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/templates/mutatingwebhook.yaml

        - key: istio.io/rev
          operator: In
          values:
          {{- if (eq .Values.revision "") }}
          - "default"
          {{- else }}
          - "{{ .Values.revision }}"
          {{- end }}
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: sidecar.istio.io/inject
          operator: NotIn
          values:
          - "false"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/templates/mutatingwebhook.yaml

        - key: istio.io/rev
          operator: In
          values:
          {{- if (eq .Values.revision "") }}
          - "default"
          {{- else }}
          - "{{ .Values.revision }}"
          {{- end }}
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: sidecar.istio.io/inject
          operator: NotIn
          values:
          - "false"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top