Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for injectionURL (0.24 sec)

  1. manifests/charts/default/templates/mutatingwebhook.yaml

    {{/* 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:
        {{- if .injectionURL }}
        url: {{ .injectionURL }}
        {{- else }}
        service:
          name: istiod{{- if not (eq .revision "") }}-{{ .revision }}{{- end }}
    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)
  2. manifests/charts/istiod-remote/templates/mutatingwebhook.yaml

    {{/* 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 }}
    {{- 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)
  3. manifests/charts/istio-control/istio-discovery/templates/revision-tags.yaml

    # is inherently created from a specific revision
    {{- $whv := dict
     "revision" .Values.revision
      "injectionPath" .Values.istiodRemote.injectionPath
      "injectionURL" .Values.istiodRemote.injectionURL
      "reinvocationPolicy" .Values.sidecarInjectorWebhook.reinvocationPolicy
      "namespace" .Release.Namespace }}
    {{- define "core" }}
    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)
  4. istioctl/pkg/tag/generate.go

    	if rev == DefaultRevisionName {
    		rev = ""
    	}
    
    	var injectionURL, caBundle, path string
    	found := false
    	for _, w := range wh.Webhooks {
    		if strings.HasSuffix(w.Name, istioInjectionWebhookSuffix) {
    			found = true
    			caBundle = string(w.ClientConfig.CABundle)
    			if w.ClientConfig.URL != nil {
    				injectionURL = *w.ClientConfig.URL
    			}
    			if w.ClientConfig.Service != nil {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jan 16 17:43:49 GMT 2024
    - 13.2K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/mutatingwebhook.yaml

    {{/* 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 }}
    {{- 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)
  6. manifests/charts/default/values.yaml

        validationURL: ""
    
      istiodRemote:
        # Sidecar injector mutating webhook configuration url
        # 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)
  7. manifests/charts/istio-control/istio-discovery/values.yaml

        # For example: https://$remotePilotAddress:15017/inject
        # The host should not refer to a service running in the cluster; use a service reference by specifying
        # the clientConfig.service field instead.
        injectionURL: ""
    
        # Sidecar injector mutating webhook configuration path value for the clientConfig.service field.
        # Override to pass env variables, for example: /inject/cluster/remote/net/network2
        injectionPath: "/inject"
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/values.yaml

        # For example: https://$remotePilotAddress:15017/inject
        # The host should not refer to a service running in the cluster; use a service reference by specifying
        # the clientConfig.service field instead.
        injectionURL: ""
        # Sidecar injector mutating webhook configuration path value for the clientConfig.service field.
        # Override to pass env variables, for example: /inject/cluster/remote/net/network2
        injectionPath: "/inject"
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    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: {{- if .injectionURL }} url: {{ .injectionURL }} {{- else }} service: name: istiod{{- if not (eq .revision "") }}-{{ .revision }}{{- end }} namespace: {{ .namespace }} path: "/inject" {{- end }}...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
Back to top