Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 616 for injecting (0.24 sec)

  1. samples/bookinfo/networking/fault-injection-details-v1.yaml

    Zhonghu Xu <******@****.***> 1578586277 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 09 16:11:17 UTC 2020
    - 522 bytes
    - Viewed (0)
  2. istioctl/pkg/checkinject/checkinject_test.go

    					Name:     "istio-sidecar-injector",
    					Revision: "default",
    					Reason:   "Namespace has istio-injection=disabled label, preventing injection",
    				},
    				{
    					Name:     "istio-sidecar-injector-1-16",
    					Revision: "1-16",
    					Injected: false,
    					Reason:   "Namespace has istio-injection=disabled label, preventing injection",
    				},
    				{
    					Name:     "istio-sidecar-injector-deactivated",
    					Revision: "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. releasenotes/notes/drop-legacy-fsgroup-injection.yaml

    John Howard <******@****.***> 1682631570 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 21:39:30 UTC 2023
    - 227 bytes
    - Viewed (0)
  4. samples/helloworld/README.md

    The following commands assume you have
    [automatic sidecar injection](https://istio.io/docs/setup/additional-setup/sidecar-injection/#automatic-sidecar-injection)
    enabled in your cluster.
    If not, you'll need to modify them to include
    [manual sidecar injection](https://istio.io/docs/setup/additional-setup/sidecar-injection/#manual-sidecar-injection).
    
    To run both versions of the helloworld service, use the following command:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. releasenotes/notes/injector-selectors.yaml

    upgradeNotes:
    - title: Sidecar Injector Changes
      content: |
        The logic to determine if a pod requires sideacr injection or not has been updated to make use of
        new Kubernetes features. Previously, the webhook was triggered at a coarse grain level, selecting any
        pods in a namespace with a matching `istio-injection=enabled` label.
    
        This has two limitations:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  8. 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)
  9. pkg/kube/inject/monitoring.go

    		"sidecar_injection_requests_total",
    		"Total number of sidecar injection requests.",
    	)
    
    	totalSuccessfulInjections = monitoring.NewSum(
    		"sidecar_injection_success_total",
    		"Total number of successful sidecar injection requests.",
    	)
    
    	totalFailedInjections = monitoring.NewSum(
    		"sidecar_injection_failure_total",
    		"Total number of failed sidecar injection requests.",
    	)
    
    	totalSkippedInjections = monitoring.NewSum(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. 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)
Back to top