Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for attachable (0.08 sec)

  1. pkg/apis/core/types.go

    	// Set of ids/uuids to uniquely identify the node.
    	// +optional
    	NodeInfo NodeSystemInfo
    	// List of container images on this node
    	// +optional
    	Images []ContainerImage
    	// List of attachable volumes in use (mounted) by the node.
    	// +optional
    	VolumesInUse []UniqueVolumeName
    	// List of volumes that are attached to the node.
    	// +optional
    	VolumesAttached []AttachedVolume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    	// List of container images on this node
    	// +optional
    	// +listType=atomic
    	Images []ContainerImage `json:"images,omitempty" protobuf:"bytes,8,rep,name=images"`
    	// List of attachable volumes in use (mounted) by the node.
    	// +optional
    	// +listType=atomic
    	VolumesInUse []UniqueVolumeName `json:"volumesInUse,omitempty" protobuf:"bytes,9,rep,name=volumesInUse"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional NodeSystemInfo nodeInfo = 7;
    
      // List of container images on this node
      // +optional
      repeated ContainerImage images = 8;
    
      // List of attachable volumes in use (mounted) by the node.
      // +optional
      repeated string volumesInUse = 9;
    
      // List of volumes that are attached to the node.
      // +optional
      repeated AttachedVolume volumesAttached = 10;
    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. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"nodeInfo":        "Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info",
    	"images":          "List of container images on this node",
    	"volumesInUse":    "List of attachable volumes in use (mounted) by the node.",
    	"volumesAttached": "List of volumes that are attached to the node.",
    	"config":          "Status of the config assigned to the node via the dynamic Kubelet config feature.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional NodeSystemInfo nodeInfo = 7;
    
      // List of container images on this node
      // +optional
      // +listType=atomic
      repeated ContainerImage images = 8;
    
      // List of attachable volumes in use (mounted) by the node.
      // +optional
      // +listType=atomic
      repeated string volumesInUse = 9;
    
      // List of volumes that are attached to the node.
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top