Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 395 for untainer (0.15 sec)

  1. pkg/api/pod/util.go

    // AllFeatureEnabledContainers returns a ContainerType mask which includes all container
    // types except for the ones guarded by feature gate.
    func AllFeatureEnabledContainers() ContainerType {
    	return AllContainers
    }
    
    // ContainerVisitor is called with each container spec, and returns true
    // if visiting should continue.
    type ContainerVisitor func(container *api.Container, containerType ContainerType) (shouldContinue bool)
    
    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. pkg/kubelet/cm/container_manager_linux.go

    	"k8s.io/kubernetes/pkg/util/oom"
    )
    
    // A non-user container tracked by the Kubelet.
    type systemContainer struct {
    	// Absolute name of the container.
    	name string
    
    	// CPU limit in millicores.
    	cpuMillicores int64
    
    	// Function that ensures the state of the container.
    	// m is the cgroup manager for the specified container.
    	ensureStateFunc func(m cgroups.Manager) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. pkg/kubelet/server/server.go

    	found := false
    	for _, container := range pod.Spec.Containers {
    		if container.Name == containerName {
    			found = true
    			break
    		}
    	}
    	if !found {
    		for _, container := range pod.Spec.InitContainers {
    			if container.Name == containerName {
    				found = true
    				break
    			}
    		}
    	}
    	if !found {
    		for _, container := range pod.Spec.EphemeralContainers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// is often referred to as a "sidecar" container. Although this init
    	// container still starts in the init container sequence, it does not wait
    	// for the container to complete before proceeding to the next init
    	// container. Instead, the next init container starts immediately after this
    	// init container is started, or after any startupProbe has successfully
    	// completed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/lib/queries.libsonnet

    local g = import './g.libsonnet';
    local q = g.query.prometheus;
    
    local variables = import './variables.libsonnet';
    
    {
      queries(names):
        local containerLabels = 'container="%(container)s", pod=~"%(pod)s"' % names;
        local appLabels = 'app="%(app)s"' % names;
        local podLabels = 'pod=~"%(pod)s"' % names;
        {
          query(legend, query):
            q.new(
              '$' + variables.datasource.name,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // is often referred to as a "sidecar" container. Although this init
      // container still starts in the init container sequence, it does not wait
      // for the container to complete before proceeding to the next init
      // container. Instead, the next init container starts immediately after this
      // init container is started, or after any startupProbe has successfully
      // completed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// is often referred to as a "sidecar" container. Although this init
    	// container still starts in the init container sequence, it does not wait
    	// for the container to complete before proceeding to the next init
    	// container. Instead, the next init container starts immediately after this
    	// init container is started, or after any startupProbe has successfully
    	// completed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	}, 100*time.Millisecond, stopCh)
    }
    
    // CheckpointContainer tries to checkpoint a container. The parameters are used to
    // look up the specified container. If the container specified by the given parameters
    // cannot be found an error is returned. If the container is found the container
    // engine will be asked to checkpoint the given container into the kubelet's default
    // checkpoint directory.
    func (kl *Kubelet) CheckpointContainer(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. pkg/scheduler/testing/wrappers.go

    	return &s.LabelSelector
    }
    
    // ContainerWrapper wraps a Container inside.
    type ContainerWrapper struct{ v1.Container }
    
    // MakeContainer creates a Container wrapper.
    func MakeContainer() *ContainerWrapper {
    	return &ContainerWrapper{v1.Container{}}
    }
    
    // Obj returns the inner Container.
    func (c *ContainerWrapper) Obj() v1.Container {
    	return c.Container
    }
    
    // Name sets `n` as the name of the inner Container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  10. pkg/volume/util/util_test.go

    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					SecurityContext: &v1.PodSecurityContext{},
    					InitContainers: []v1.Container{
    						{
    							SecurityContext: &v1.SecurityContext{
    								RunAsUser: ptr.To[int64](1000),
    							},
    						},
    					},
    					Containers: []v1.Container{
    						{
    							SecurityContext: &v1.SecurityContext{
    								RunAsUser: ptr.To[int64](1000),
    							},
    						},
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top