Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for sidecarInjectorWebhook (0.25 sec)

  1. manifests/charts/istiod-remote/templates/istiod-injector-configmap.yaml

        {{- if .Values.sidecarInjectorWebhook.defaultTemplates }}
        defaultTemplates:
    {{- range .Values.sidecarInjectorWebhook.defaultTemplates}}
        - {{ . }}
    {{- end }}
        {{- else }}
        defaultTemplates: [sidecar]
        {{- end }}
        policy: {{ .Values.global.proxy.autoInject }}
        alwaysInjectSelector:
    {{ toYaml .Values.sidecarInjectorWebhook.alwaysInjectSelector | trim | indent 6 }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 21 03:10:21 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/istiod-injector-configmap.yaml

        {{- if .Values.sidecarInjectorWebhook.defaultTemplates }}
        defaultTemplates:
    {{- range .Values.sidecarInjectorWebhook.defaultTemplates}}
        - {{ . }}
    {{- end }}
        {{- else }}
        defaultTemplates: [sidecar]
        {{- end }}
        policy: {{ .Values.global.proxy.autoInject }}
        alwaysInjectSelector:
    {{ toYaml .Values.sidecarInjectorWebhook.alwaysInjectSelector | trim | indent 6 }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 21 03:10:21 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/mutatingwebhook.yaml

    {{- $whv := dict
     "revision" .Values.revision
      "injectionPath" .Values.istiodRemote.injectionPath
      "injectionURL" .Values.istiodRemote.injectionURL
      "reinvocationPolicy" .Values.sidecarInjectorWebhook.reinvocationPolicy
      "caBundle" .Values.istiodRemote.injectionCABundle
      "namespace" .Release.Namespace }}
    {{- define "core" }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Mar 07 06:39:27 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/revision-tags.yaml

    {{- $whv := dict
     "revision" .Values.revision
      "injectionPath" .Values.istiodRemote.injectionPath
      "injectionURL" .Values.istiodRemote.injectionURL
      "reinvocationPolicy" .Values.sidecarInjectorWebhook.reinvocationPolicy
      "namespace" .Release.Namespace }}
    {{- define "core" }}
    {{- /* Kubernetes unfortunately requires a unique name for the webhook in some newer versions, so we assign
    a unique prefix to each. */}}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jul 12 18:12:47 GMT 2023
    - 4.4K bytes
    - Viewed (1)
  5. manifests/charts/default/templates/mutatingwebhook.yaml

      objectSelector:
        matchExpressions:
        - key: sidecar.istio.io/inject
          operator: In
          values:
          - "true"
        - key: istio.io/rev
          operator: DoesNotExist
    
    {{- if .Values.sidecarInjectorWebhook.enableNamespacesByDefault }}
    {{- /* Special case 3: no labels at all */}}
    {{- include "core" (mergeOverwrite (deepCopy $whv) (dict "Prefix" "auto.") ) }}
      namespaceSelector:
        matchExpressions:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/templates/mutatingwebhook.yaml

    {{- $whv := dict
     "revision" .Values.revision
      "injectionPath" .Values.istiodRemote.injectionPath
      "injectionURL" .Values.istiodRemote.injectionURL
      "reinvocationPolicy" .Values.sidecarInjectorWebhook.reinvocationPolicy
      "caBundle" .Values.istiodRemote.injectionCABundle
      "namespace" .Release.Namespace }}
    {{- define "core" }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Mar 07 06:39:27 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  7. manifests/charts/default/values.yaml

        # For example: https://$remotePilotAddress:15017/inject
        injectionURL: ""
    
      # Revision is set as 'version' label and part of the resource names when installing multiple control planes.
      revision: ""
    
      sidecarInjectorWebhook:
        # This enables injection of sidecar in all namespaces,
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 627 bytes
    - Viewed (0)
  8. operator/cmd/mesh/manifest-generate.go

      istioctl manifest generate --set profile=demo
    
      # To override a setting that includes dots, escape them with a backslash (\).  Your shell may require enclosing quotes.
      istioctl manifest generate --set "values.sidecarInjectorWebhook.injectedAnnotations.container\.apparmor\.security\.beta\.kubernetes\.io/istio-proxy=runtime/default"
    `,
    		Args: func(cmd *cobra.Command, args []string) error {
    			if len(args) != 0 {
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  9. operator/cmd/mesh/manifest-generate_test.go

    	res := []v1.MutatingWebhook{}
    	for _, wh := range whs {
    		res = append(res, wh...)
    	}
    	return res
    }
    
    const (
    	// istioctl manifest generate --set values.sidecarInjectorWebhook.useLegacySelectors=true
    	legacyDefaultInjector = `
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
      name: istio-sidecar-injector
    webhooks:
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Feb 22 08:32:23 GMT 2024
    - 42K bytes
    - Viewed (0)
  10. istioctl/pkg/tag/generate.go

    	if err := r.Run(); err != nil {
    		return "", fmt.Errorf("failed running Helm renderer: %v", err)
    	}
    
    	values := fmt.Sprintf(`
    revision: %q
    revisionTags:
      - %s
    
    sidecarInjectorWebhook:
      enableNamespacesByDefault: %t
      objectSelector:
        enabled: true
        autoInject: true
    
    istiodRemote:
      injectionURL: %s
    `, config.Revision, config.Tag, opts.AutoInjectNamespaces, config.URL)
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Jan 16 17:43:49 GMT 2024
    - 13.2K bytes
    - Viewed (0)
Back to top