Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for NodeRuntimeHandlerFeatures (0.43 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/noderuntimehandlerfeatures.go

    // with apply.
    type NodeRuntimeHandlerFeaturesApplyConfiguration struct {
    	RecursiveReadOnlyMounts *bool `json:"recursiveReadOnlyMounts,omitempty"`
    }
    
    // NodeRuntimeHandlerFeaturesApplyConfiguration constructs an declarative configuration of the NodeRuntimeHandlerFeatures type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.NodeRuntimeHandlerFeatures)(nil), (*core.NodeRuntimeHandlerFeatures)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_NodeRuntimeHandlerFeatures_To_core_NodeRuntimeHandlerFeatures(a.(*v1.NodeRuntimeHandlerFeatures), b.(*core.NodeRuntimeHandlerFeatures), 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)
  3. pkg/kubelet/nodestatus/setters.go

    		node.Status.RuntimeHandlers = make([]v1.NodeRuntimeHandler, len(handlers))
    		for i, h := range handlers {
    			node.Status.RuntimeHandlers[i] = v1.NodeRuntimeHandler{
    				Name: h.Name,
    				Features: &v1.NodeRuntimeHandlerFeatures{
    					RecursiveReadOnlyMounts: &h.SupportsRecursiveReadOnlyMounts,
    				},
    			}
    		}
    		return nil
    	}
    }
    
    // ReadyCondition returns a Setter that updates the v1.NodeReady condition on the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. pkg/apis/core/zz_generated.deepcopy.go

    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeRuntimeHandlerFeatures.
    func (in *NodeRuntimeHandlerFeatures) DeepCopy() *NodeRuntimeHandlerFeatures {
    	if in == nil {
    		return nil
    	}
    	out := new(NodeRuntimeHandlerFeatures)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeRuntimeHandlerFeatures.
    func (in *NodeRuntimeHandlerFeatures) DeepCopy() *NodeRuntimeHandlerFeatures {
    	if in == nil {
    		return nil
    	}
    	out := new(NodeRuntimeHandlerFeatures)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.pb.go

    var xxx_messageInfo_NodeRuntimeHandler proto.InternalMessageInfo
    
    func (m *NodeRuntimeHandlerFeatures) Reset()      { *m = NodeRuntimeHandlerFeatures{} }
    func (*NodeRuntimeHandlerFeatures) ProtoMessage() {}
    func (*NodeRuntimeHandlerFeatures) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{106}
    }
    func (m *NodeRuntimeHandlerFeatures) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    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

    type NodeDaemonEndpoints struct {
    	// Endpoint on which Kubelet is listening.
    	// +optional
    	KubeletEndpoint DaemonEndpoint
    }
    
    // NodeRuntimeHandlerFeatures is a set of runtime features.
    type NodeRuntimeHandlerFeatures struct {
    	// RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts.
    	// +featureGate=RecursiveReadOnlyMounts
    	// +optional
    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/generated.proto

      // +optional
      optional string name = 1;
    
      // Supported features.
      // +optional
      optional NodeRuntimeHandlerFeatures features = 2;
    }
    
    // NodeRuntimeHandlerFeatures is a set of runtime features.
    message NodeRuntimeHandlerFeatures {
      // RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts.
      // +featureGate=RecursiveReadOnlyMounts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	KubeletEndpoint DaemonEndpoint `json:"kubeletEndpoint,omitempty" protobuf:"bytes,1,opt,name=kubeletEndpoint"`
    }
    
    // NodeRuntimeHandlerFeatures is a set of runtime features.
    type NodeRuntimeHandlerFeatures struct {
    	// RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts.
    	// +featureGate=RecursiveReadOnlyMounts
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    var map_NodeRuntimeHandlerFeatures = map[string]string{
    	"":                        "NodeRuntimeHandlerFeatures is a set of runtime features.",
    	"recursiveReadOnlyMounts": "RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts.",
    }
    
    func (NodeRuntimeHandlerFeatures) SwaggerDoc() map[string]string {
    	return map_NodeRuntimeHandlerFeatures
    }
    
    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