Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ContainerStateRunning (0.24 sec)

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

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.ContainerStateRunning)(nil), (*core.ContainerStateRunning)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_ContainerStateRunning_To_core_ContainerStateRunning(a.(*v1.ContainerStateRunning), b.(*core.ContainerStateRunning), 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. common-protos/k8s.io/api/core/v1/generated.proto

      // Details about a running container
      // +optional
      optional ContainerStateRunning running = 2;
    
      // Details about a terminated container
      // +optional
      optional ContainerStateTerminated terminated = 3;
    }
    
    // ContainerStateRunning is a running state of a container.
    message ContainerStateRunning {
      // Time at which the container was last (re-)started
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// +optional
    	Reason string
    	// A human-readable message indicating details about why the container is in waiting state.
    	// +optional
    	Message string
    }
    
    // ContainerStateRunning represents the running state of a container
    type ContainerStateRunning struct {
    	// +optional
    	StartedAt metav1.Time
    }
    
    // ContainerStateTerminated represents the terminated state of a container
    type ContainerStateTerminated struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // Details about a running container
      // +optional
      optional ContainerStateRunning running = 2;
    
      // Details about a terminated container
      // +optional
      optional ContainerStateTerminated terminated = 3;
    }
    
    // ContainerStateRunning is a running state of a container.
    message ContainerStateRunning {
      // Time at which the container was last (re-)started
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// Message regarding why the container is not yet running.
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,2,opt,name=message"`
    }
    
    // ContainerStateRunning is a running state of a container.
    type ContainerStateRunning struct {
    	// Time at which the container was last (re-)started
    	// +optional
    	StartedAt metav1.Time `json:"startedAt,omitempty" protobuf:"bytes,1,opt,name=startedAt"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_ContainerState
    }
    
    var map_ContainerStateRunning = map[string]string{
    	"":          "ContainerStateRunning is a running state of a container.",
    	"startedAt": "Time at which the container was last (re-)started",
    }
    
    func (ContainerStateRunning) SwaggerDoc() map[string]string {
    	return map_ContainerStateRunning
    }
    
    var map_ContainerStateTerminated = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top