Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for imageType (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. manifests/charts/istiod-remote/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)
  6. pkg/config/analysis/analyzers/injection/injection-image.go

    		// it always overrides the injector logic.
    		if r.Metadata.Annotations["sidecar.istio.io/proxyImage"] != "" {
    			return true
    		}
    
    		variant := resolver.ImageType(r)
    
    		for _, container := range append(slices.Clone(pod.Containers), pod.InitContainers...) {
    			if container.Name != util.IstioProxyName {
    				continue
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    			Selector: &istio_type_v1beta1.WorkloadSelector{
    				MatchLabels: map[string]string{
    					"gateway.networking.k8s.io/gateway-name": "default",
    				},
    			},
    			Image: &istioio_networking_v1beta1.ProxyImage{
    				ImageType: "distroless",
    			},
    		},
    	}); err != nil {
    		t.Fatalf("failed to create ProxyConfigs: %s", err)
    	}
    	proxyConfig := model.GetProxyConfigs(store, mesh.DefaultMeshConfig())
    	tests := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/perception_ops_utils.cc

               << func_.getFunctionType().getNumResults();
      }
    
      // Check types and shapes.
      auto image_type = mlir::dyn_cast_or_null<RankedTensorType>(
          func_.getFunctionType().getInput(0));
      if (!image_type || !image_type.getElementType().isF32() ||
          image_type.getRank() != 4) {
        return func_.emitWarning() << "Image should be a 4D float tensor";
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                    type: object
                  image:
                    description: Specifies the details of the proxy image.
                    properties:
                      imageType:
                        description: The image type of the image.
                        type: string
                    type: object
                  selector:
                    description: Optional.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  10. manifests/charts/base/crds/crd-all.gen.yaml

                    type: object
                  image:
                    description: Specifies the details of the proxy image.
                    properties:
                      imageType:
                        description: The image type of the image.
                        type: string
                    type: object
                  selector:
                    description: Optional.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
Back to top