Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 368 for injecting (0.23 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    [[service_injection]]
    = Understanding Services and Service Injection
    
    Gradle provides a number of useful services that can be used by custom Gradle types.
    For example, the link:{javadocPath}/org/gradle/workers/WorkerExecutor.html[WorkerExecutor] service can be used by a task to run work in parallel, as seen in the <<worker_api.adoc#worker_api,worker API>> section.
    The services are made available through _service injection_.
    
    [[services_for_injection]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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