Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for RuntimeHandlers (0.18 sec)

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

    	out.VolumesAttached = *(*[]core.AttachedVolume)(unsafe.Pointer(&in.VolumesAttached))
    	out.Config = (*core.NodeConfigStatus)(unsafe.Pointer(in.Config))
    	out.RuntimeHandlers = *(*[]core.NodeRuntimeHandler)(unsafe.Pointer(&in.RuntimeHandlers))
    	return nil
    }
    
    // Convert_v1_NodeStatus_To_core_NodeStatus is an autogenerated conversion function.
    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. staging/src/k8s.io/api/core/v1/types.go

    	// The available runtime handlers.
    	// +featureGate=RecursiveReadOnlyMounts
    	// +optional
    	// +listType=atomic
    	RuntimeHandlers []NodeRuntimeHandler `json:"runtimeHandlers,omitempty" protobuf:"bytes,12,rep,name=runtimeHandlers"`
    }
    
    type UniqueVolumeName string
    
    // AttachedVolume describes a volume attached to a node
    type AttachedVolume struct {
    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. pkg/apis/core/types.go

    	// +optional
    	Config *NodeConfigStatus
    	// The available runtime handlers.
    	// +featureGate=RecursiveReadOnlyMounts
    	// +optional
    	RuntimeHandlers []NodeRuntimeHandler
    }
    
    // UniqueVolumeName defines the name of attached volume
    type UniqueVolumeName string
    
    // AttachedVolume describes a volume attached to a node
    type AttachedVolume 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/types_swagger_doc_generated.go

    	"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.",
    	"runtimeHandlers": "The available runtime handlers.",
    }
    
    func (NodeStatus) SwaggerDoc() map[string]string {
    	return map_NodeStatus
    }
    
    var map_NodeSystemInfo = 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)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      optional NodeConfigStatus config = 11;
    
      // The available runtime handlers.
      // +featureGate=RecursiveReadOnlyMounts
      // +optional
      // +listType=atomic
      repeated NodeRuntimeHandler runtimeHandlers = 12;
    }
    
    // NodeSystemInfo is a set of ids/uuids to uniquely identify the node.
    message NodeSystemInfo {
      // MachineID reported by the node. For unique machine identification
    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