Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for ImageType (0.14 sec)

  1. pkg/config/analysis/analyzers/testdata/injection-image-distroless-no-meshconfig.yaml

      namespace: ns-override
    spec:
      image:
        imageType: distroless
    ---
    # ProxyConfig for workload-override namespace
    apiVersion: networking.istio.io/v1beta1
    kind: ProxyConfig
    metadata:
      name: valid-example-pc
      namespace: workload-override
    spec:
      selector:
        matchLabels:
          app: details
          workload: details
      image:
        imageType: distroless
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 15:31:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. releasenotes/notes/48174.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 15:31:54 UTC 2023
    - 266 bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/util/proxyconfig.go

    	rootNamespace string
    	root          *v1beta1.ProxyConfig
    	namespace     map[string]*v1beta1.ProxyConfig
    	workload      map[string]*v1beta1.ProxyConfig
    }
    
    // ImageType returns the effective image type for the given pod.
    func (e *EffectiveProxyConfigResolver) ImageType(pod *resource.Instance) string {
    	variant := ""
    	if e.meshConfig.GetDefaultConfig().GetImage().GetImageType() != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 21:07:52 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/proxy_config_test.go

    					&v1beta1.ProxyConfig{
    						Concurrency: v(3),
    						Image: &v1beta1.ProxyImage{
    							ImageType: "debug",
    						},
    					}),
    			},
    			proxy: newMeta("test-ns", nil, nil),
    			expected: &meshconfig.ProxyConfig{
    				Concurrency: v(3),
    				Image: &v1beta1.ProxyImage{
    					ImageType: "debug",
    				},
    			},
    		},
    		{
    			name: "CR takes precedence over meshConfig.defaultConfig",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. pkg/kube/inject/inject.go

    		tag = fmt.Sprintf("%v", global.GetTag().AsInterface())
    	}
    
    	imageType := global.GetVariant()
    	if image != nil {
    		imageType = image.ImageType
    	}
    
    	if global.GetProxy() != nil && global.GetProxy().GetImage() != "" {
    		imageName = global.GetProxy().GetImage()
    	}
    
    	if it, ok := annotations[annotation.SidecarProxyImageType.Name]; ok {
    		imageType = it
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. pkg/kube/inject/inject_test.go

    				Tag: t,
    			},
    		}
    	}
    	pc := func(imageType string) *proxyConfig.ProxyImage {
    		return &proxyConfig.ProxyImage{
    			ImageType: imageType,
    		}
    	}
    
    	ann := func(imageType string) map[string]string {
    		if imageType == "" {
    			return nil
    		}
    		return map[string]string{
    			annotation.SidecarProxyImageType.Name: imageType,
    		}
    	}
    
    	for _, tt := range []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/common/meshconfig.yaml

    defaultConfig:
      image:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 02:55:12 UTC 2023
    - 50 bytes
    - Viewed (0)
  8. releasenotes/notes/48017.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
    - 47964
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 02:55:12 UTC 2023
    - 230 bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/deployment/proxy-config-crd.yaml

            - name: ISTIO_CPU_LIMIT
              valueFrom:
                resourceFieldRef:
                  resource: limits.cpu
            - name: PROXY_CONFIG
              value: |
                {"image":{"imageType":"distroless"}}
            - name: ISTIO_META_POD_PORTS
              value: '[]'
            - name: ISTIO_META_APP_CONTAINERS
              value: ""
            - name: GOMEMLIMIT
              valueFrom:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/templates/configmap.yaml

        defaultConfig:
          {{- if .Values.global.meshID }}
          meshId: "{{ .Values.global.meshID }}"
          {{- end }}
          {{- with (.Values.global.proxy.variant | default .Values.global.variant) }}
          image:
            imageType: {{. | quote}}
          {{- end }}
          {{- if not (eq .Values.global.proxy.tracer "none") }}
          tracing:
          {{- if eq .Values.global.proxy.tracer "lightstep" }}
            lightstep:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top