Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for containerStatus (0.23 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.ContainerStatus)(nil), (*core.ContainerStatus)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_ContainerStatus_To_core_ContainerStatus(a.(*v1.ContainerStatus), b.(*core.ContainerStatus), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    func validateContainerStatusUsers(containerStatuses []core.ContainerStatus, fldPath *field.Path, podOS *core.PodOS) field.ErrorList {
    	allErrors := field.ErrorList{}
    	osName := core.Linux
    	if podOS != nil {
    		osName = podOS.Name
    	}
    	for i, containerStatus := range containerStatuses {
    		if containerStatus.User == nil {
    			continue
    		}
    		containerUser := containerStatus.User
    		switch osName {
    		case core.Windows:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      optional string reason = 1;
    
      // Message regarding why the container is not yet running.
      // +optional
      optional string message = 2;
    }
    
    // ContainerStatus contains details for the current status of this container.
    message ContainerStatus {
      // Name is a DNS_LABEL representing the unique name of the container.
      // Each container in a pod must have a unique name across all container types.
      // Cannot be updated.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	InitContainerStatuses []ContainerStatus
    	// The list has one entry per app container in the manifest.
    	// +optional
    	ContainerStatuses []ContainerStatus
    
    	// Status for any ephemeral containers that have run in this pod.
    	// +optional
    	EphemeralContainerStatuses []ContainerStatus
    
    	// Status of resources resize desired for pod's containers.
    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. staging/src/k8s.io/api/core/v1/generated.proto

      optional string reason = 1;
    
      // Message regarding why the container is not yet running.
      // +optional
      optional string message = 2;
    }
    
    // ContainerStatus contains details for the current status of this container.
    message ContainerStatus {
      // Name is a DNS_LABEL representing the unique name of the container.
      // Each container in a pod must have a unique name across all container types.
      // Cannot be updated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// Details about a terminated container
    	// +optional
    	Terminated *ContainerStateTerminated `json:"terminated,omitempty" protobuf:"bytes,3,opt,name=terminated"`
    }
    
    // ContainerStatus contains details for the current status of this container.
    type ContainerStatus struct {
    	// Name is a DNS_LABEL representing the unique name of the container.
    	// Each container in a pod must have a unique name across all container types.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (ContainerStateWaiting) SwaggerDoc() map[string]string {
    	return map_ContainerStateWaiting
    }
    
    var map_ContainerStatus = map[string]string{
    	"":                   "ContainerStatus contains details for the current status of this container.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.25.md

    - Changed ownership semantics of PersistentVolume's spec.claimRef from `atomic` to `granular`. ([#110495](https://github.com/kubernetes/kubernetes/pull/110495), [@alexzielenski](https://github.com/alexzielenski))
    - Extended ContainerStatus CRI API to allow runtime response with container resource requests and limits that are in effect.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
Back to top