Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for injectedAnnotations (0.24 sec)

  1. operator/pkg/tpath/tree_test.go

    	rootYAML := `
    values:
      sidecarInjectorWebhook:
        injectedAnnotations: {}
    `
    	tests := []struct {
    		desc      string
    		path      string
    		value     any
    		want      string
    		wantFound bool
    		wantErr   string
    	}{
    		{
    			desc:      "ModifyEscapedPathValue",
    			path:      `values.sidecarInjectorWebhook.injectedAnnotations.container\.apparmor\.security\.beta\.kubernetes\.io/istio-proxy`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/values.yaml

        # injectedAnnotations:
        #   container.apparmor.security.beta.kubernetes.io/istio-init: runtime/default
        #   container.apparmor.security.beta.kubernetes.io/istio-proxy: runtime/default
        injectedAnnotations: {}
        # This enables injection of sidecar in all namespaces,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. pkg/kube/inject/inject.go

    	// over it and stop at the first match
    	AlwaysInjectSelector []metav1.LabelSelector `json:"alwaysInjectSelector"`
    
    	// InjectedAnnotations are additional annotations that will be added to the pod spec after injection
    	// This is primarily to support PSP annotations.
    	InjectedAnnotations map[string]string `json:"injectedAnnotations"`
    
    	// Templates is a pre-parsed copy of RawTemplates
    	Templates Templates `json:"-"`
    }
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/values.yaml

        # injectedAnnotations:
        #   container.apparmor.security.beta.kubernetes.io/istio-init: runtime/default
        #   container.apparmor.security.beta.kubernetes.io/istio-proxy: runtime/default
        injectedAnnotations: {}
    
        # This enables injection of sidecar in all namespaces,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

          dnsConfig:
            searches:
              {{- range .Values.global.podDNSSearchNamespaces }}
              - {{ render . }}
              {{- end }}
          {{- end }}
        injectedAnnotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

          dnsConfig:
            searches:
              {{- range .Values.global.podDNSSearchNamespaces }}
              - {{ render . }}
              {{- end }}
          {{- end }}
        injectedAnnotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

          dnsConfig:
            searches:
              {{- range .Values.global.podDNSSearchNamespaces }}
              - {{ render . }}
              {{- end }}
          {{- end }}
        injectedAnnotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

          dnsConfig:
            searches:
              {{- range .Values.global.podDNSSearchNamespaces }}
              - {{ render . }}
              {{- end }}
          {{- end }}
        injectedAnnotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. pkg/kube/inject/webhook.go

    		aliases:             wh.Config.Aliases,
    		meshConfig:          wh.meshConfig,
    		proxyConfig:         proxyConfig,
    		valuesConfig:        wh.valuesConfig,
    		revision:            wh.revision,
    		injectedAnnotations: wh.Config.InjectedAnnotations,
    		proxyEnvs:           parseInjectEnvs(path),
    	}
    
    	if platform.IsOpenShift() && wh.namespaces != nil {
    		clusterID, _ := extractClusterAndNetwork(params)
    		if clusterID == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  10. operator/cmd/mesh/install.go

      # To override a setting that includes dots, escape them with a backslash (\).  Your shell may require enclosing quotes.
      istioctl install --set "values.sidecarInjectorWebhook.injectedAnnotations.container\.apparmor\.security\.beta\.kubernetes\.io/istio-proxy=runtime/default"
    `,
    		Args: cobra.ExactArgs(0),
    		PreRunE: func(cmd *cobra.Command, args []string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top