Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 177 for ephemeral_container (0.32 sec)

  1. pkg/api/pod/util.go

    		}
    	}
    
    	for i := range podSpec.EphemeralContainers {
    		if podSpec.EphemeralContainers[i].Lifecycle == nil {
    			continue
    		}
    		adjustLifecycle(podSpec.EphemeralContainers[i].Lifecycle)
    		if podSpec.EphemeralContainers[i].Lifecycle.PreStop == nil && podSpec.EphemeralContainers[i].Lifecycle.PostStart == nil {
    			podSpec.EphemeralContainers[i].Lifecycle = nil
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  2. istioctl/pkg/util/handlers/handlers_test.go

    			Containers: []corev1.Container{
    				{
    					Name: "bar",
    				},
    			},
    			InitContainers: []corev1.Container{
    				{
    					Name: "initfoo",
    				},
    			},
    			EphemeralContainers: []corev1.EphemeralContainer{
    				{
    					EphemeralContainerCommon: corev1.EphemeralContainerCommon{
    						Name: "debugger",
    					},
    				},
    			},
    		},
    		Status: corev1.PodStatus{
    			Phase: corev1.PodRunning,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 18:17:49 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    		"EphemeralContainers[*].EphemeralContainerCommon.SecurityContext.ReadOnlyRootFilesystem",
    		"EphemeralContainers[*].EphemeralContainerCommon.SecurityContext.RunAsGroup",
    		"EphemeralContainers[*].EphemeralContainerCommon.SecurityContext.RunAsUser",
    		"EphemeralContainers[*].EphemeralContainerCommon.SecurityContext.SELinuxOptions",
    		"EphemeralContainers[*].EphemeralContainerCommon.SecurityContext.SeccompProfile",
    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/apis/core/v1/defaults_test.go

    		".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service":   `""`,
    		".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.PeriodSeconds":               "10",
    		".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.SuccessThreshold":            "1",
    		".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.TimeoutSeconds":              "1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  5. pkg/kubelet/container/ref.go

    			}
    			return fmt.Sprintf("spec.initContainers{%s}", here.Name), nil
    		}
    	}
    	for i := range pod.Spec.EphemeralContainers {
    		here := &pod.Spec.EphemeralContainers[i]
    		if here.Name == container.Name {
    			if here.Name == "" {
    				return fmt.Sprintf("spec.ephemeralContainers[%d]", i), nil
    			}
    			return fmt.Sprintf("spec.ephemeralContainers{%s}", here.Name), nil
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 00:55:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. plugin/pkg/admission/imagepolicy/admission.go

    	_ "k8s.io/kubernetes/pkg/apis/imagepolicy/install"
    )
    
    // PluginName indicates name of admission plugin.
    const PluginName = "ImagePolicyWebhook"
    const ephemeralcontainers = "ephemeralcontainers"
    
    // AuditKeyPrefix is used as the prefix for all audit keys handled by this
    // pluggin. Some well known suffixes are listed below.
    var AuditKeyPrefix = strings.ToLower(PluginName) + ".image-policy.k8s.io/"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. pkg/apis/core/pods/helpers.go

    	for i := range podSpec.Containers {
    		if !visitor(&podSpec.Containers[i], fldPath.Index(i)) {
    			return false
    		}
    	}
    	fldPath = specPath.Child("ephemeralContainers")
    	for i := range podSpec.EphemeralContainers {
    		if !visitor((*api.Container)(&podSpec.EphemeralContainers[i].EphemeralContainerCommon), fldPath.Index(i)) {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:35:30 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. pkg/api/v1/pod/util.go

    			if !visitor(&podSpec.Containers[i], Containers) {
    				return false
    			}
    		}
    	}
    	if mask&EphemeralContainers != 0 {
    		for i := range podSpec.EphemeralContainers {
    			if !visitor((*v1.Container)(&podSpec.EphemeralContainers[i].EphemeralContainerCommon), EphemeralContainers) {
    				return false
    			}
    		}
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 17:18:04 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/storage/storage.go

    type PodStorage struct {
    	Pod                 *REST
    	Binding             *BindingREST
    	LegacyBinding       *LegacyBindingREST
    	Eviction            *EvictionREST
    	Status              *StatusREST
    	EphemeralContainers *EphemeralContainersREST
    	Log                 *podrest.LogREST
    	Proxy               *podrest.ProxyREST
    	Exec                *podrest.ExecREST
    	Attach              *podrest.AttachREST
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podspec.go

    	Containers                    []ContainerApplyConfiguration                `json:"containers,omitempty"`
    	EphemeralContainers           []EphemeralContainerApplyConfiguration       `json:"ephemeralContainers,omitempty"`
    	RestartPolicy                 *corev1.RestartPolicy                        `json:"restartPolicy,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:22:42 UTC 2022
    - 23.9K bytes
    - Viewed (0)
Back to top