Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 616 for injecting (0.13 sec)

  1. 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)
  2. 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)
  3. samples/ambient-argo/tag-chart/values.yaml

      #   (4) injectionURL: the URL to for injection on this revision tag.
      #   (5) injectionPath: the injection path to use for this tag webhook.
      #
      # Note that the revision tag "default" has additional semantic meaning as it
      # controls the revision that performs validation and the revision that handles
      # injection for default selectors ("istio-injection=enabled" and "sidecar.istio.io/inject").
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. releasenotes/notes/add-default-revision-webhook.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
      - |
        **Updated** non-revisioned installs to target the label `istio.io/rev=default` for injection in addition to the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 12 19:16:25 UTC 2021
    - 298 bytes
    - Viewed (0)
  5. 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)
  6. istioctl/pkg/checkinject/testdata/check-inject/default-injector.yaml

        name: rev.namespace.sidecar-injector.istio.io
        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"
        reinvocationPolicy: Never
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 3.9K 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. samples/ambient-argo/tag-chart/templates/mutatingwebhooks.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: Sat Nov 04 01:54:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_tag.yaml

      matchPolicy: Equivalent
      name: rev.namespace.sidecar-injector.istio.io
      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"
      reinvocationPolicy: Never
      rules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 17:23:44 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. 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)
Back to top