Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for RuntimeHandlers (0.33 sec)

  1. pkg/kubelet/kubelet_getters.go

    }
    
    // HandlerSupportsUserNamespaces checks whether the specified handler supports
    // user namespaces.
    func (kl *Kubelet) HandlerSupportsUserNamespaces(rtHandler string) (bool, error) {
    	rtHandlers := kl.runtimeState.runtimeHandlers()
    	if rtHandlers == nil {
    		return false, fmt.Errorf("runtime handlers are not set")
    	}
    	for _, h := range rtHandlers {
    		if h.Name == rtHandler {
    			return h.SupportsUserNamespaces, nil
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.Config != nil {
    		in, out := &in.Config, &out.Config
    		*out = new(NodeConfigStatus)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.RuntimeHandlers != nil {
    		in, out := &in.RuntimeHandlers, &out.RuntimeHandlers
    		*out = make([]NodeRuntimeHandler, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.Config != nil {
    		in, out := &in.Config, &out.Config
    		*out = new(NodeConfigStatus)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.RuntimeHandlers != nil {
    		in, out := &in.RuntimeHandlers, &out.RuntimeHandlers
    		*out = make([]NodeRuntimeHandler, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/api/core/v1/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.RuntimeHandlers = append(m.RuntimeHandlers, NodeRuntimeHandler{})
    			if err := m.RuntimeHandlers[len(m.RuntimeHandlers)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. api/openapi-spec/v3/api__v1_openapi.json

                "type": "string"
              },
              "runtimeHandlers": {
                "description": "The available runtime handlers.",
                "items": {
                  "allOf": [
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top