Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for deepcopy (5.81 sec)

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

        operator.istio.io/component: "Pilot"
        app: sidecar-injector
        release: {{ $.Release.Name }}
    webhooks:
    {{- include "core" (mergeOverwrite (deepCopy $whv) (dict "Prefix" "rev.namespace.") ) }}
      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: In
          values:
          - "{{ $tagName }}"
        - key: istio-injection
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 4.4K bytes
    - Viewed (1)
  2. manifests/charts/istio-control/istio-discovery/templates/mutatingwebhook.yaml

    {{- /* Core defines the common configuration used by all webhook segments */}}
    {{/* Copy just what we need to avoid expensive deepCopy */}}
    {{- $whv := dict
     "revision" .Values.revision
      "injectionPath" .Values.istiodRemote.injectionPath
      "injectionURL" .Values.istiodRemote.injectionURL
      "reinvocationPolicy" .Values.sidecarInjectorWebhook.reinvocationPolicy
      "caBundle" .Values.istiodRemote.injectionCABundle
      "namespace" .Release.Namespace }}
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/mutatingwebhook.yaml

    {{- /* Core defines the common configuration used by all webhook segments */}}
    {{/* Copy just what we need to avoid expensive deepCopy */}}
    {{- $whv := dict
     "revision" .Values.revision
      "injectionPath" .Values.istiodRemote.injectionPath
      "injectionURL" .Values.istiodRemote.injectionURL
      "reinvocationPolicy" .Values.sidecarInjectorWebhook.reinvocationPolicy
      "caBundle" .Values.istiodRemote.injectionCABundle
      "namespace" .Release.Namespace }}
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  4. manifests/charts/default/templates/mutatingwebhook.yaml

    # Adapted from istio-discovery/templates/mutatingwebhook.yaml
    # Removed paths for legacy and default selectors since a revision tag
    # is inherently created from a specific revision
    {{/* Copy just what we need to avoid expensive deepCopy */}}
    {{- $whv := dict
     "revision" .Values.revision
      "injectionURL" .Values.istiodRemote.injectionURL
      "namespace" .Release.Namespace }}
    {{- define "core" }}
    - name: {{.Prefix}}sidecar-injector.istio.io
      clientConfig:
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    	ingressNss := sets.New[string]()
    	for i, pod := range pods.Items {
    		ns := pod.GetNamespace()
    		ingressNss.Insert(ns)
    		ingressPods[ns] = append(ingressPods[ns], pods.Items[i].DeepCopy())
    	}
    
    	foundIngresses := []*ingressInfo{}
    	for _, ns := range ingressNss.UnsortedList() {
    		// Currently no support for non-standard gateways selecting non ingressgateway pods
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
Back to top