Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 284 for InitContainers (0.28 sec)

  1. pkg/kube/inject/testdata/inject/grpc-agent.yaml.injected

            sidecar.istio.io/rewriteAppHTTPProbers: "false"
            sidecar.istio.io/status: '{"initContainers":null,"containers":["istio-proxy","traffic"],"volumes":["workload-socket","workload-certs","istio-xds","istio-data","istio-podinfo","istio-token","istiod-ca-cert"],"imagePullSecrets":null,"revision":"default"}'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/gateway.yaml.injected

            prometheus.io/scrape: "true"
            proxy.istio.io/overrides: '{"containers":[{"name":"istio-proxy","resources":{},"imagePullPolicy":"IfNotPresent"}]}'
            sidecar.istio.io/status: '{"initContainers":null,"containers":["istio-proxy"],"volumes":["workload-socket","credential-socket","workload-certs","istio-envoy","istio-data","istio-podinfo","istio-token","istiod-ca-cert"],"imagePullSecrets":null,"revision":"default"}'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    		"ImagePullSecrets",
    		"InitContainers[*].Args",
    		"InitContainers[*].Command",
    		"InitContainers[*].Env",
    		"InitContainers[*].EnvFrom",
    		"InitContainers[*].Image",
    		"InitContainers[*].ImagePullPolicy",
    		"InitContainers[*].Lifecycle",
    		"InitContainers[*].LivenessProbe",
    		"InitContainers[*].Name",
    		"InitContainers[*].Ports",
    		"InitContainers[*].ReadinessProbe",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/manager_test.go

    	regularInitCont1 := podWithPluginResourcesInRestartableInitContainers.Spec.InitContainers[0].Name
    	restartableInitCont2 := podWithPluginResourcesInRestartableInitContainers.Spec.InitContainers[1].Name
    	restartableInitCont3 := podWithPluginResourcesInRestartableInitContainers.Spec.InitContainers[2].Name
    	normalCont1 := podWithPluginResourcesInRestartableInitContainers.Spec.Containers[0].Name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/util/in_mesh.go

    func PodInMesh(r *resource.Instance, c analysis.Context) bool {
    	p := r.Message.(*v1.PodSpec)
    	return inMesh(r.Metadata.Annotations, r.Metadata.Labels,
    		r.Metadata.FullName.Namespace, append(slices.Clone(p.Containers), p.InitContainers...), c)
    }
    
    // PodInAmbientMode returns true if a Pod is in the service mesh with the ambient mode
    func PodInAmbientMode(r *resource.Instance) bool {
    	if r == nil {
    		return false
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. pkg/volume/util/nested_volumes_test.go

    								{MountPath: "/mnt/sub1/sub2/sub4/skip2", Name: "vol5a"},
    								{MountPath: "/mnt/sub1/sub2/sub6", Name: "vol6"},
    								{MountPath: "/mnt7", Name: "vol7"},
    							},
    						},
    					},
    					InitContainers: []v1.Container{
    						{
    							VolumeMounts: []v1.VolumeMount{
    								{MountPath: "/mnt/dir", Name: "vol1"},
    								{MountPath: "/mnt/dir_ignore", Name: "vol8"},
    								{MountPath: "/ignore", Name: "vol9"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/injection/injection-image.go

    		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
    			}
    
    			proxyImage, okImage := proxyImageMap[injectionCMName]
    			if !okImage {
    				return true
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/injection/injection.go

    		if strings.EqualFold(inj, "false") {
    			return true
    		}
    
    		if pod.HostNetwork {
    			return true
    		}
    
    		proxyImage := ""
    		for _, container := range append(slices.Clone(pod.Containers), pod.InitContainers...) {
    			if container.Name == util.IstioProxyName {
    				proxyImage = container.Image
    				break
    			}
    		}
    
    		if proxyImage == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/maturity/maturity.go

    				util.AddLineNumber(r, ann, m)
    
    				ctx.Report(collectionType, m)
    			}
    		}
    	}
    }
    
    func isCNIEnabled(pod *corev1.PodSpec) bool {
    	var hasIstioInitContainer bool
    	for _, c := range pod.InitContainers {
    		if c.Name == "istio-init" {
    			hasIstioInitContainer = true
    			break
    		}
    	}
    	return !hasIstioInitContainer
    }
    
    // istioAnnotation is true if the annotation is in Istio's namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. pkg/volume/emptydir/empty_dir_test.go

    			medium:         v1.StorageMediumHugePages,
    			shouldFail:     false,
    			expectedResult: "pagesize=1Gi",
    		},
    		"InitContainerAndContainerHasProperValues": {
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					InitContainers: []v1.Container{
    						{
    							Resources: v1.ResourceRequirements{
    								Requests: v1.ResourceList{
    									v1.ResourceName("hugepages-1Gi"): resource.MustParse("2Gi"),
    								},
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top