v1

package
v0.18.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 26, 2020 License: Apache-2.0 Imports: 12 Imported by: 2,467

Documentation

Index

Constants

View Source
const GroupName = "storage.k8s.io"

GroupName is the group name use in this package

Variables

View Source
var (
	ErrInvalidLengthGenerated        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenerated          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGenerated = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	// TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api.
	// localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes.
	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)

	AddToScheme = localSchemeBuilder.AddToScheme
)
View Source
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1"}

SchemeGroupVersion is group version used to register these objects

Functions

func Resource

func Resource(resource string) schema.GroupResource

Resource takes an unqualified resource and returns a Group qualified GroupResource

Types

type CSIDriver added in v0.18.0

type CSIDriver struct {
	metav1.TypeMeta `json:",inline"`

	// Standard object metadata.
	// metadata.Name indicates the name of the CSI driver that this object
	// refers to; it MUST be the same name returned by the CSI GetPluginName()
	// call for that driver.
	// The driver name must be 63 characters or less, beginning and ending with
	// an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (.), and
	// alphanumerics between.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Specification of the CSI Driver.
	Spec CSIDriverSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"`
}

CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced.

func (*CSIDriver) DeepCopy added in v0.18.0

func (in *CSIDriver) DeepCopy() *CSIDriver

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSIDriver.

func (*CSIDriver) DeepCopyInto added in v0.18.0

func (in *CSIDriver) DeepCopyInto(out *CSIDriver)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*CSIDriver) DeepCopyObject added in v0.18.0

func (in *CSIDriver) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*CSIDriver) Descriptor added in v0.18.0

func (*CSIDriver) Descriptor() ([]byte, []int)

func (*CSIDriver) Marshal added in v0.18.0

func (m *CSIDriver) Marshal() (dAtA []byte, err error)

func (*CSIDriver) MarshalTo added in v0.18.0

func (m *CSIDriver) MarshalTo(dAtA []byte) (int, error)

func (*CSIDriver) MarshalToSizedBuffer added in v0.18.0

func (m *CSIDriver) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CSIDriver) ProtoMessage added in v0.18.0

func (*CSIDriver) ProtoMessage()

func (*CSIDriver) Reset added in v0.18.0

func (m *CSIDriver) Reset()

func (*CSIDriver) Size added in v0.18.0

func (m *CSIDriver) Size() (n int)

func (*CSIDriver) String added in v0.18.0

func (this *CSIDriver) String() string

func (CSIDriver) SwaggerDoc added in v0.18.0

func (CSIDriver) SwaggerDoc() map[string]string

func (*CSIDriver) Unmarshal added in v0.18.0

func (m *CSIDriver) Unmarshal(dAtA []byte) error

func (*CSIDriver) XXX_DiscardUnknown added in v0.18.0

func (m *CSIDriver) XXX_DiscardUnknown()

func (*CSIDriver) XXX_Marshal added in v0.18.0

func (m *CSIDriver) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CSIDriver) XXX_Merge added in v0.18.0

func (m *CSIDriver) XXX_Merge(src proto.Message)

func (*CSIDriver) XXX_Size added in v0.18.0

func (m *CSIDriver) XXX_Size() int

func (*CSIDriver) XXX_Unmarshal added in v0.18.0

func (m *CSIDriver) XXX_Unmarshal(b []byte) error

type CSIDriverList added in v0.18.0

type CSIDriverList struct {
	metav1.TypeMeta `json:",inline"`

	// Standard list metadata
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// items is the list of CSIDriver
	Items []CSIDriver `json:"items" protobuf:"bytes,2,rep,name=items"`
}

CSIDriverList is a collection of CSIDriver objects.

func (*CSIDriverList) DeepCopy added in v0.18.0

func (in *CSIDriverList) DeepCopy() *CSIDriverList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSIDriverList.

func (*CSIDriverList) DeepCopyInto added in v0.18.0

func (in *CSIDriverList) DeepCopyInto(out *CSIDriverList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*CSIDriverList) DeepCopyObject added in v0.18.0

func (in *CSIDriverList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*CSIDriverList) Descriptor added in v0.18.0

func (*CSIDriverList) Descriptor() ([]byte, []int)

func (*CSIDriverList) Marshal added in v0.18.0

func (m *CSIDriverList) Marshal() (dAtA []byte, err error)

func (*CSIDriverList) MarshalTo added in v0.18.0

func (m *CSIDriverList) MarshalTo(dAtA []byte) (int, error)

func (*CSIDriverList) MarshalToSizedBuffer added in v0.18.0

func (m *CSIDriverList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CSIDriverList) ProtoMessage added in v0.18.0

func (*CSIDriverList) ProtoMessage()

func (*CSIDriverList) Reset added in v0.18.0

func (m *CSIDriverList) Reset()

func (*CSIDriverList) Size added in v0.18.0

func (m *CSIDriverList) Size() (n int)

func (*CSIDriverList) String added in v0.18.0

func (this *CSIDriverList) String() string

func (CSIDriverList) SwaggerDoc added in v0.18.0

func (CSIDriverList) SwaggerDoc() map[string]string

func (*CSIDriverList) Unmarshal added in v0.18.0

func (m *CSIDriverList) Unmarshal(dAtA []byte) error

func (*CSIDriverList) XXX_DiscardUnknown added in v0.18.0

func (m *CSIDriverList) XXX_DiscardUnknown()

func (*CSIDriverList) XXX_Marshal added in v0.18.0

func (m *CSIDriverList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CSIDriverList) XXX_Merge added in v0.18.0

func (m *CSIDriverList) XXX_Merge(src proto.Message)

func (*CSIDriverList) XXX_Size added in v0.18.0

func (m *CSIDriverList) XXX_Size() int

func (*CSIDriverList) XXX_Unmarshal added in v0.18.0

func (m *CSIDriverList) XXX_Unmarshal(b []byte) error

type CSIDriverSpec added in v0.18.0

type CSIDriverSpec struct {
	// attachRequired indicates this CSI volume driver requires an attach
	// operation (because it implements the CSI ControllerPublishVolume()
	// method), and that the Kubernetes attach detach controller should call
	// the attach volume interface which checks the volumeattachment status
	// and waits until the volume is attached before proceeding to mounting.
	// The CSI external-attacher coordinates with CSI volume driver and updates
	// the volumeattachment status when the attach operation is complete.
	// If the CSIDriverRegistry feature gate is enabled and the value is
	// specified to false, the attach operation will be skipped.
	// Otherwise the attach operation will be called.
	// +optional
	AttachRequired *bool `json:"attachRequired,omitempty" protobuf:"varint,1,opt,name=attachRequired"`

	// If set to true, podInfoOnMount indicates this CSI volume driver
	// requires additional pod information (like podName, podUID, etc.) during
	// mount operations.
	// If set to false, pod information will not be passed on mount.
	// Default is false.
	// The CSI driver specifies podInfoOnMount as part of driver deployment.
	// If true, Kubelet will pass pod information as VolumeContext in the CSI
	// NodePublishVolume() calls.
	// The CSI driver is responsible for parsing and validating the information
	// passed in as VolumeContext.
	// The following VolumeConext will be passed if podInfoOnMount is set to true.
	// This list might grow, but the prefix will be used.
	// "csi.storage.k8s.io/pod.name": pod.Name
	// "csi.storage.k8s.io/pod.namespace": pod.Namespace
	// "csi.storage.k8s.io/pod.uid": string(pod.UID)
	// "csi.storage.k8s.io/ephemeral": "true" iff the volume is an ephemeral inline volume
	//                                 defined by a CSIVolumeSource, otherwise "false"
	//
	// "csi.storage.k8s.io/ephemeral" is a new feature in Kubernetes 1.16. It is only
	// required for drivers which support both the "Persistent" and "Ephemeral" VolumeLifecycleMode.
	// Other drivers can leave pod info disabled and/or ignore this field.
	// As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when
	// deployed on such a cluster and the deployment determines which mode that is, for example
	// via a command line parameter of the driver.
	// +optional
	PodInfoOnMount *bool `json:"podInfoOnMount,omitempty" protobuf:"bytes,2,opt,name=podInfoOnMount"`

	// volumeLifecycleModes defines what kind of volumes this CSI volume driver supports.
	// The default if the list is empty is "Persistent", which is the usage
	// defined by the CSI specification and implemented in Kubernetes via the usual
	// PV/PVC mechanism.
	// The other mode is "Ephemeral". In this mode, volumes are defined inline
	// inside the pod spec with CSIVolumeSource and their lifecycle is tied to
	// the lifecycle of that pod. A driver has to be aware of this
	// because it is only going to get a NodePublishVolume call for such a volume.
	// For more information about implementing this mode, see
	// https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html
	// A driver can support one or more of these modes and
	// more modes may be added in the future.
	// This field is beta.
	// +optional
	// +listType=set
	VolumeLifecycleModes []VolumeLifecycleMode `json:"volumeLifecycleModes,omitempty" protobuf:"bytes,3,opt,name=volumeLifecycleModes"`
}

CSIDriverSpec is the specification of a CSIDriver.

func (*CSIDriverSpec) DeepCopy added in v0.18.0

func (in *CSIDriverSpec) DeepCopy() *CSIDriverSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSIDriverSpec.

func (*CSIDriverSpec) DeepCopyInto added in v0.18.0

func (in *CSIDriverSpec) DeepCopyInto(out *CSIDriverSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*CSIDriverSpec) Descriptor added in v0.18.0

func (*CSIDriverSpec) Descriptor() ([]byte, []int)

func (*CSIDriverSpec) Marshal added in v0.18.0

func (m *CSIDriverSpec) Marshal() (dAtA []byte, err error)

func (*CSIDriverSpec) MarshalTo added in v0.18.0

func (m *CSIDriverSpec) MarshalTo(dAtA []byte) (int, error)

func (*CSIDriverSpec) MarshalToSizedBuffer added in v0.18.0

func (m *CSIDriverSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CSIDriverSpec) ProtoMessage added in v0.18.0

func (*CSIDriverSpec) ProtoMessage()

func (*CSIDriverSpec) Reset added in v0.18.0

func (m *CSIDriverSpec) Reset()

func (*CSIDriverSpec) Size added in v0.18.0

func (m *CSIDriverSpec) Size() (n int)

func (*CSIDriverSpec) String added in v0.18.0

func (this *CSIDriverSpec) String() string

func (CSIDriverSpec) SwaggerDoc added in v0.18.0

func (CSIDriverSpec) SwaggerDoc() map[string]string

func (*CSIDriverSpec) Unmarshal added in v0.18.0

func (m *CSIDriverSpec) Unmarshal(dAtA []byte) error

func (*CSIDriverSpec) XXX_DiscardUnknown added in v0.18.0

func (m *CSIDriverSpec) XXX_DiscardUnknown()

func (*CSIDriverSpec) XXX_Marshal added in v0.18.0

func (m *CSIDriverSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CSIDriverSpec) XXX_Merge added in v0.18.0

func (m *CSIDriverSpec) XXX_Merge(src proto.Message)

func (*CSIDriverSpec) XXX_Size added in v0.18.0

func (m *CSIDriverSpec) XXX_Size() int

func (*CSIDriverSpec) XXX_Unmarshal added in v0.18.0

func (m *CSIDriverSpec) XXX_Unmarshal(b []byte) error

type CSINode added in v0.17.0

type CSINode struct {
	metav1.TypeMeta `json:",inline"`

	// metadata.name must be the Kubernetes node name.
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// spec is the specification of CSINode
	Spec CSINodeSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"`
}

CSINode holds information about all CSI drivers installed on a node. CSI drivers do not need to create the CSINode object directly. As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration. CSINode has the same name as a node. If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn't create this object. CSINode has an OwnerReference that points to the corresponding node object.

func (*CSINode) DeepCopy added in v0.17.0

func (in *CSINode) DeepCopy() *CSINode

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSINode.

func (*CSINode) DeepCopyInto added in v0.17.0

func (in *CSINode) DeepCopyInto(out *CSINode)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*CSINode) DeepCopyObject added in v0.17.0

func (in *CSINode) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*CSINode) Descriptor added in v0.17.0

func (*CSINode) Descriptor() ([]byte, []int)

func (*CSINode) Marshal added in v0.17.0

func (m *CSINode) Marshal() (dAtA []byte, err error)

func (*CSINode) MarshalTo added in v0.17.0

func (m *CSINode) MarshalTo(dAtA []byte) (int, error)

func (*CSINode) MarshalToSizedBuffer added in v0.17.0

func (m *CSINode) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CSINode) ProtoMessage added in v0.17.0

func (*CSINode) ProtoMessage()

func (*CSINode) Reset added in v0.17.0

func (m *CSINode) Reset()

func (*CSINode) Size added in v0.17.0

func (m *CSINode) Size() (n int)

func (*CSINode) String added in v0.17.0

func (this *CSINode) String() string

func (CSINode) SwaggerDoc added in v0.17.0

func (CSINode) SwaggerDoc() map[string]string

func (*CSINode) Unmarshal added in v0.17.0

func (m *CSINode) Unmarshal(dAtA []byte) error

func (*CSINode) XXX_DiscardUnknown added in v0.17.0

func (m *CSINode) XXX_DiscardUnknown()

func (*CSINode) XXX_Marshal added in v0.17.0

func (m *CSINode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CSINode) XXX_Merge added in v0.17.0

func (m *CSINode) XXX_Merge(src proto.Message)

func (*CSINode) XXX_Size added in v0.17.0

func (m *CSINode) XXX_Size() int

func (*CSINode) XXX_Unmarshal added in v0.17.0

func (m *CSINode) XXX_Unmarshal(b []byte) error

type CSINodeDriver added in v0.17.0

type CSINodeDriver struct {
	// This is the name of the CSI driver that this object refers to.
	// This MUST be the same name returned by the CSI GetPluginName() call for
	// that driver.
	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`

	// nodeID of the node from the driver point of view.
	// This field enables Kubernetes to communicate with storage systems that do
	// not share the same nomenclature for nodes. For example, Kubernetes may
	// refer to a given node as "node1", but the storage system may refer to
	// the same node as "nodeA". When Kubernetes issues a command to the storage
	// system to attach a volume to a specific node, it can use this field to
	// refer to the node name using the ID that the storage system will
	// understand, e.g. "nodeA" instead of "node1". This field is required.
	NodeID string `json:"nodeID" protobuf:"bytes,2,opt,name=nodeID"`

	// topologyKeys is the list of keys supported by the driver.
	// When a driver is initialized on a cluster, it provides a set of topology
	// keys that it understands (e.g. "company.com/zone", "company.com/region").
	// When a driver is initialized on a node, it provides the same topology keys
	// along with values. Kubelet will expose these topology keys as labels
	// on its own node object.
	// When Kubernetes does topology aware provisioning, it can use this list to
	// determine which labels it should retrieve from the node object and pass
	// back to the driver.
	// It is possible for different nodes to use different topology keys.
	// This can be empty if driver does not support topology.
	// +optional
	TopologyKeys []string `json:"topologyKeys" protobuf:"bytes,3,rep,name=topologyKeys"`

	// allocatable represents the volume resources of a node that are available for scheduling.
	// This field is beta.
	// +optional
	Allocatable *VolumeNodeResources `json:"allocatable,omitempty" protobuf:"bytes,4,opt,name=allocatable"`
}

CSINodeDriver holds information about the specification of one CSI driver installed on a node

func (*CSINodeDriver) DeepCopy added in v0.17.0

func (in *CSINodeDriver) DeepCopy() *CSINodeDriver

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSINodeDriver.

func (*CSINodeDriver) DeepCopyInto added in v0.17.0

func (in *CSINodeDriver) DeepCopyInto(out *CSINodeDriver)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*CSINodeDriver) Descriptor added in v0.17.0

func (*CSINodeDriver) Descriptor() ([]byte, []int)

func (*CSINodeDriver) Marshal added in v0.17.0

func (m *CSINodeDriver) Marshal() (dAtA []byte, err error)

func (*CSINodeDriver) MarshalTo added in v0.17.0

func (m *CSINodeDriver) MarshalTo(dAtA []byte) (int, error)

func (*CSINodeDriver) MarshalToSizedBuffer added in v0.17.0

func (m *CSINodeDriver) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CSINodeDriver) ProtoMessage added in v0.17.0

func (*CSINodeDriver) ProtoMessage()

func (*CSINodeDriver) Reset added in v0.17.0

func (m *CSINodeDriver) Reset()

func (*CSINodeDriver) Size added in v0.17.0

func (m *CSINodeDriver) Size() (n int)

func (*CSINodeDriver) String added in v0.17.0

func (this *CSINodeDriver) String() string

func (CSINodeDriver) SwaggerDoc added in v0.17.0

func (CSINodeDriver) SwaggerDoc() map[string]string

func (*CSINodeDriver) Unmarshal added in v0.17.0

func (m *CSINodeDriver) Unmarshal(dAtA []byte) error

func (*CSINodeDriver) XXX_DiscardUnknown added in v0.17.0

func (m *CSINodeDriver) XXX_DiscardUnknown()

func (*CSINodeDriver) XXX_Marshal added in v0.17.0

func (m *CSINodeDriver) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CSINodeDriver) XXX_Merge added in v0.17.0

func (m *CSINodeDriver) XXX_Merge(src proto.Message)

func (*CSINodeDriver) XXX_Size added in v0.17.0

func (m *CSINodeDriver) XXX_Size() int

func (*CSINodeDriver) XXX_Unmarshal added in v0.17.0

func (m *CSINodeDriver) XXX_Unmarshal(b []byte) error

type CSINodeList added in v0.17.0

type CSINodeList struct {
	metav1.TypeMeta `json:",inline"`

	// Standard list metadata
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// items is the list of CSINode
	Items []CSINode `json:"items" protobuf:"bytes,2,rep,name=items"`
}

CSINodeList is a collection of CSINode objects.

func (*CSINodeList) DeepCopy added in v0.17.0

func (in *CSINodeList) DeepCopy() *CSINodeList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSINodeList.

func (*CSINodeList) DeepCopyInto added in v0.17.0

func (in *CSINodeList) DeepCopyInto(out *CSINodeList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*CSINodeList) DeepCopyObject added in v0.17.0

func (in *CSINodeList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*CSINodeList) Descriptor added in v0.17.0

func (*CSINodeList) Descriptor() ([]byte, []int)

func (*CSINodeList) Marshal added in v0.17.0

func (m *CSINodeList) Marshal() (dAtA []byte, err error)

func (*CSINodeList) MarshalTo added in v0.17.0

func (m *CSINodeList) MarshalTo(dAtA []byte) (int, error)

func (*CSINodeList) MarshalToSizedBuffer added in v0.17.0

func (m *CSINodeList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CSINodeList) ProtoMessage added in v0.17.0

func (*CSINodeList) ProtoMessage()

func (*CSINodeList) Reset added in v0.17.0

func (m *CSINodeList) Reset()

func (*CSINodeList) Size added in v0.17.0

func (m *CSINodeList) Size() (n int)

func (*CSINodeList) String added in v0.17.0

func (this *CSINodeList) String() string

func (CSINodeList) SwaggerDoc added in v0.17.0

func (CSINodeList) SwaggerDoc() map[string]string

func (*CSINodeList) Unmarshal added in v0.17.0

func (m *CSINodeList) Unmarshal(dAtA []byte) error

func (*CSINodeList) XXX_DiscardUnknown added in v0.17.0

func (m *CSINodeList) XXX_DiscardUnknown()

func (*CSINodeList) XXX_Marshal added in v0.17.0

func (m *CSINodeList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CSINodeList) XXX_Merge added in v0.17.0

func (m *CSINodeList) XXX_Merge(src proto.Message)

func (*CSINodeList) XXX_Size added in v0.17.0

func (m *CSINodeList) XXX_Size() int

func (*CSINodeList) XXX_Unmarshal added in v0.17.0

func (m *CSINodeList) XXX_Unmarshal(b []byte) error

type CSINodeSpec added in v0.17.0

type CSINodeSpec struct {
	// drivers is a list of information of all CSI Drivers existing on a node.
	// If all drivers in the list are uninstalled, this can become empty.
	// +patchMergeKey=name
	// +patchStrategy=merge
	Drivers []CSINodeDriver `json:"drivers" patchStrategy:"merge" patchMergeKey:"name" protobuf:"bytes,1,rep,name=drivers"`
}

CSINodeSpec holds information about the specification of all CSI drivers installed on a node

func (*CSINodeSpec) DeepCopy added in v0.17.0

func (in *CSINodeSpec) DeepCopy() *CSINodeSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSINodeSpec.

func (*CSINodeSpec) DeepCopyInto added in v0.17.0

func (in *CSINodeSpec) DeepCopyInto(out *CSINodeSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*CSINodeSpec) Descriptor added in v0.17.0

func (*CSINodeSpec) Descriptor() ([]byte, []int)

func (*CSINodeSpec) Marshal added in v0.17.0

func (m *CSINodeSpec) Marshal() (dAtA []byte, err error)

func (*CSINodeSpec) MarshalTo added in v0.17.0

func (m *CSINodeSpec) MarshalTo(dAtA []byte) (int, error)

func (*CSINodeSpec) MarshalToSizedBuffer added in v0.17.0

func (m *CSINodeSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CSINodeSpec) ProtoMessage added in v0.17.0

func (*CSINodeSpec) ProtoMessage()

func (*CSINodeSpec) Reset added in v0.17.0

func (m *CSINodeSpec) Reset()

func (*CSINodeSpec) Size added in v0.17.0

func (m *CSINodeSpec) Size() (n int)

func (*CSINodeSpec) String added in v0.17.0

func (this *CSINodeSpec) String() string

func (CSINodeSpec) SwaggerDoc added in v0.17.0

func (CSINodeSpec) SwaggerDoc() map[string]string

func (*CSINodeSpec) Unmarshal added in v0.17.0

func (m *CSINodeSpec) Unmarshal(dAtA []byte) error

func (*CSINodeSpec) XXX_DiscardUnknown added in v0.17.0

func (m *CSINodeSpec) XXX_DiscardUnknown()

func (*CSINodeSpec) XXX_Marshal added in v0.17.0

func (m *CSINodeSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CSINodeSpec) XXX_Merge added in v0.17.0

func (m *CSINodeSpec) XXX_Merge(src proto.Message)

func (*CSINodeSpec) XXX_Size added in v0.17.0

func (m *CSINodeSpec) XXX_Size() int

func (*CSINodeSpec) XXX_Unmarshal added in v0.17.0

func (m *CSINodeSpec) XXX_Unmarshal(b []byte) error

type StorageClass

type StorageClass struct {
	metav1.TypeMeta `json:",inline"`
	// Standard object's metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Provisioner indicates the type of the provisioner.
	Provisioner string `json:"provisioner" protobuf:"bytes,2,opt,name=provisioner"`

	// Parameters holds the parameters for the provisioner that should
	// create volumes of this storage class.
	// +optional
	Parameters map[string]string `json:"parameters,omitempty" protobuf:"bytes,3,rep,name=parameters"`

	// Dynamically provisioned PersistentVolumes of this storage class are
	// created with this reclaimPolicy. Defaults to Delete.
	// +optional
	ReclaimPolicy *v1.PersistentVolumeReclaimPolicy `` /* 130-byte string literal not displayed */

	// Dynamically provisioned PersistentVolumes of this storage class are
	// created with these mountOptions, e.g. ["ro", "soft"]. Not validated -
	// mount of the PVs will simply fail if one is invalid.
	// +optional
	MountOptions []string `json:"mountOptions,omitempty" protobuf:"bytes,5,opt,name=mountOptions"`

	// AllowVolumeExpansion shows whether the storage class allow volume expand
	// +optional
	AllowVolumeExpansion *bool `json:"allowVolumeExpansion,omitempty" protobuf:"varint,6,opt,name=allowVolumeExpansion"`

	// VolumeBindingMode indicates how PersistentVolumeClaims should be
	// provisioned and bound.  When unset, VolumeBindingImmediate is used.
	// This field is only honored by servers that enable the VolumeScheduling feature.
	// +optional
	VolumeBindingMode *VolumeBindingMode `json:"volumeBindingMode,omitempty" protobuf:"bytes,7,opt,name=volumeBindingMode"`

	// Restrict the node topologies where volumes can be dynamically provisioned.
	// Each volume plugin defines its own supported topology specifications.
	// An empty TopologySelectorTerm list means there is no topology restriction.
	// This field is only honored by servers that enable the VolumeScheduling feature.
	// +optional
	AllowedTopologies []v1.TopologySelectorTerm `json:"allowedTopologies,omitempty" protobuf:"bytes,8,rep,name=allowedTopologies"`
}

StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.

StorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.

func (*StorageClass) DeepCopy

func (in *StorageClass) DeepCopy() *StorageClass

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageClass.

func (*StorageClass) DeepCopyInto

func (in *StorageClass) DeepCopyInto(out *StorageClass)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*StorageClass) DeepCopyObject

func (in *StorageClass) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*StorageClass) Descriptor

func (*StorageClass) Descriptor() ([]byte, []int)

func (*StorageClass) Marshal

func (m *StorageClass) Marshal() (dAtA []byte, err error)

func (*StorageClass) MarshalTo

func (m *StorageClass) MarshalTo(dAtA []byte) (int, error)

func (*StorageClass) MarshalToSizedBuffer added in v0.16.4

func (m *StorageClass) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StorageClass) ProtoMessage

func (*StorageClass) ProtoMessage()

func (*StorageClass) Reset

func (m *StorageClass) Reset()

func (*StorageClass) Size

func (m *StorageClass) Size() (n int)

func (*StorageClass) String

func (this *StorageClass) String() string

func (StorageClass) SwaggerDoc

func (StorageClass) SwaggerDoc() map[string]string

func (*StorageClass) Unmarshal

func (m *StorageClass) Unmarshal(dAtA []byte) error

func (*StorageClass) XXX_DiscardUnknown added in v0.16.4

func (m *StorageClass) XXX_DiscardUnknown()

func (*StorageClass) XXX_Marshal added in v0.16.4

func (m *StorageClass) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StorageClass) XXX_Merge added in v0.16.4

func (m *StorageClass) XXX_Merge(src proto.Message)

func (*StorageClass) XXX_Size added in v0.16.4

func (m *StorageClass) XXX_Size() int

func (*StorageClass) XXX_Unmarshal added in v0.16.4

func (m *StorageClass) XXX_Unmarshal(b []byte) error

type StorageClassList

type StorageClassList struct {
	metav1.TypeMeta `json:",inline"`
	// Standard list metadata
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Items is the list of StorageClasses
	Items []StorageClass `json:"items" protobuf:"bytes,2,rep,name=items"`
}

StorageClassList is a collection of storage classes.

func (*StorageClassList) DeepCopy

func (in *StorageClassList) DeepCopy() *StorageClassList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageClassList.

func (*StorageClassList) DeepCopyInto

func (in *StorageClassList) DeepCopyInto(out *StorageClassList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*StorageClassList) DeepCopyObject

func (in *StorageClassList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*StorageClassList) Descriptor

func (*StorageClassList) Descriptor() ([]byte, []int)

func (*StorageClassList) Marshal

func (m *StorageClassList) Marshal() (dAtA []byte, err error)

func (*StorageClassList) MarshalTo

func (m *StorageClassList) MarshalTo(dAtA []byte) (int, error)

func (*StorageClassList) MarshalToSizedBuffer added in v0.16.4

func (m *StorageClassList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StorageClassList) ProtoMessage

func (*StorageClassList) ProtoMessage()

func (*StorageClassList) Reset

func (m *StorageClassList) Reset()

func (*StorageClassList) Size

func (m *StorageClassList) Size() (n int)

func (*StorageClassList) String

func (this *StorageClassList) String() string

func (StorageClassList) SwaggerDoc

func (StorageClassList) SwaggerDoc() map[string]string

func (*StorageClassList) Unmarshal

func (m *StorageClassList) Unmarshal(dAtA []byte) error

func (*StorageClassList) XXX_DiscardUnknown added in v0.16.4

func (m *StorageClassList) XXX_DiscardUnknown()

func (*StorageClassList) XXX_Marshal added in v0.16.4

func (m *StorageClassList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StorageClassList) XXX_Merge added in v0.16.4

func (m *StorageClassList) XXX_Merge(src proto.Message)

func (*StorageClassList) XXX_Size added in v0.16.4

func (m *StorageClassList) XXX_Size() int

func (*StorageClassList) XXX_Unmarshal added in v0.16.4

func (m *StorageClassList) XXX_Unmarshal(b []byte) error

type VolumeAttachment

type VolumeAttachment struct {
	metav1.TypeMeta `json:",inline"`

	// Standard object metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Specification of the desired attach/detach volume behavior.
	// Populated by the Kubernetes system.
	Spec VolumeAttachmentSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"`

	// Status of the VolumeAttachment request.
	// Populated by the entity completing the attach or detach
	// operation, i.e. the external-attacher.
	// +optional
	Status VolumeAttachmentStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
}

VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.

VolumeAttachment objects are non-namespaced.

func (*VolumeAttachment) DeepCopy

func (in *VolumeAttachment) DeepCopy() *VolumeAttachment

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeAttachment.

func (*VolumeAttachment) DeepCopyInto

func (in *VolumeAttachment) DeepCopyInto(out *VolumeAttachment)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*VolumeAttachment) DeepCopyObject

func (in *VolumeAttachment) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*VolumeAttachment) Descriptor

func (*VolumeAttachment) Descriptor() ([]byte, []int)

func (*VolumeAttachment) Marshal

func (m *VolumeAttachment) Marshal() (dAtA []byte, err error)

func (*VolumeAttachment) MarshalTo

func (m *VolumeAttachment) MarshalTo(dAtA []byte) (int, error)

func (*VolumeAttachment) MarshalToSizedBuffer added in v0.16.4

func (m *VolumeAttachment) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VolumeAttachment) ProtoMessage

func (*VolumeAttachment) ProtoMessage()

func (*VolumeAttachment) Reset

func (m *VolumeAttachment) Reset()

func (*VolumeAttachment) Size

func (m *VolumeAttachment) Size() (n int)

func (*VolumeAttachment) String

func (this *VolumeAttachment) String() string

func (VolumeAttachment) SwaggerDoc

func (VolumeAttachment) SwaggerDoc() map[string]string

func (*VolumeAttachment) Unmarshal

func (m *VolumeAttachment) Unmarshal(dAtA []byte) error

func (*VolumeAttachment) XXX_DiscardUnknown added in v0.16.4

func (m *VolumeAttachment) XXX_DiscardUnknown()

func (*VolumeAttachment) XXX_Marshal added in v0.16.4

func (m *VolumeAttachment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VolumeAttachment) XXX_Merge added in v0.16.4

func (m *VolumeAttachment) XXX_Merge(src proto.Message)

func (*VolumeAttachment) XXX_Size added in v0.16.4

func (m *VolumeAttachment) XXX_Size() int

func (*VolumeAttachment) XXX_Unmarshal added in v0.16.4

func (m *VolumeAttachment) XXX_Unmarshal(b []byte) error

type VolumeAttachmentList

type VolumeAttachmentList struct {
	metav1.TypeMeta `json:",inline"`
	// Standard list metadata
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`

	// Items is the list of VolumeAttachments
	Items []VolumeAttachment `json:"items" protobuf:"bytes,2,rep,name=items"`
}

VolumeAttachmentList is a collection of VolumeAttachment objects.

func (*VolumeAttachmentList) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeAttachmentList.

func (*VolumeAttachmentList) DeepCopyInto

func (in *VolumeAttachmentList) DeepCopyInto(out *VolumeAttachmentList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*VolumeAttachmentList) DeepCopyObject

func (in *VolumeAttachmentList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*VolumeAttachmentList) Descriptor

func (*VolumeAttachmentList) Descriptor() ([]byte, []int)

func (*VolumeAttachmentList) Marshal

func (m *VolumeAttachmentList) Marshal() (dAtA []byte, err error)

func (*VolumeAttachmentList) MarshalTo

func (m *VolumeAttachmentList) MarshalTo(dAtA []byte) (int, error)

func (*VolumeAttachmentList) MarshalToSizedBuffer added in v0.16.4

func (m *VolumeAttachmentList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VolumeAttachmentList) ProtoMessage

func (*VolumeAttachmentList) ProtoMessage()

func (*VolumeAttachmentList) Reset

func (m *VolumeAttachmentList) Reset()

func (*VolumeAttachmentList) Size

func (m *VolumeAttachmentList) Size() (n int)

func (*VolumeAttachmentList) String

func (this *VolumeAttachmentList) String() string

func (VolumeAttachmentList) SwaggerDoc

func (VolumeAttachmentList) SwaggerDoc() map[string]string

func (*VolumeAttachmentList) Unmarshal

func (m *VolumeAttachmentList) Unmarshal(dAtA []byte) error

func (*VolumeAttachmentList) XXX_DiscardUnknown added in v0.16.4

func (m *VolumeAttachmentList) XXX_DiscardUnknown()

func (*VolumeAttachmentList) XXX_Marshal added in v0.16.4

func (m *VolumeAttachmentList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VolumeAttachmentList) XXX_Merge added in v0.16.4

func (m *VolumeAttachmentList) XXX_Merge(src proto.Message)

func (*VolumeAttachmentList) XXX_Size added in v0.16.4

func (m *VolumeAttachmentList) XXX_Size() int

func (*VolumeAttachmentList) XXX_Unmarshal added in v0.16.4

func (m *VolumeAttachmentList) XXX_Unmarshal(b []byte) error

type VolumeAttachmentSource

type VolumeAttachmentSource struct {
	// Name of the persistent volume to attach.
	// +optional
	PersistentVolumeName *string `json:"persistentVolumeName,omitempty" protobuf:"bytes,1,opt,name=persistentVolumeName"`

	// inlineVolumeSpec contains all the information necessary to attach
	// a persistent volume defined by a pod's inline VolumeSource. This field
	// is populated only for the CSIMigration feature. It contains
	// translated fields from a pod's inline VolumeSource to a
	// PersistentVolumeSpec. This field is alpha-level and is only
	// honored by servers that enabled the CSIMigration feature.
	// +optional
	InlineVolumeSpec *v1.PersistentVolumeSpec `json:"inlineVolumeSpec,omitempty" protobuf:"bytes,2,opt,name=inlineVolumeSpec"`
}

VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.

func (*VolumeAttachmentSource) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeAttachmentSource.

func (*VolumeAttachmentSource) DeepCopyInto

func (in *VolumeAttachmentSource) DeepCopyInto(out *VolumeAttachmentSource)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*VolumeAttachmentSource) Descriptor

func (*VolumeAttachmentSource) Descriptor() ([]byte, []int)

func (*VolumeAttachmentSource) Marshal

func (m *VolumeAttachmentSource) Marshal() (dAtA []byte, err error)

func (*VolumeAttachmentSource) MarshalTo

func (m *VolumeAttachmentSource) MarshalTo(dAtA []byte) (int, error)

func (*VolumeAttachmentSource) MarshalToSizedBuffer added in v0.16.4

func (m *VolumeAttachmentSource) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VolumeAttachmentSource) ProtoMessage

func (*VolumeAttachmentSource) ProtoMessage()

func (*VolumeAttachmentSource) Reset

func (m *VolumeAttachmentSource) Reset()

func (*VolumeAttachmentSource) Size

func (m *VolumeAttachmentSource) Size() (n int)

func (*VolumeAttachmentSource) String

func (this *VolumeAttachmentSource) String() string

func (VolumeAttachmentSource) SwaggerDoc

func (VolumeAttachmentSource) SwaggerDoc() map[string]string

func (*VolumeAttachmentSource) Unmarshal

func (m *VolumeAttachmentSource) Unmarshal(dAtA []byte) error

func (*VolumeAttachmentSource) XXX_DiscardUnknown added in v0.16.4

func (m *VolumeAttachmentSource) XXX_DiscardUnknown()

func (*VolumeAttachmentSource) XXX_Marshal added in v0.16.4

func (m *VolumeAttachmentSource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VolumeAttachmentSource) XXX_Merge added in v0.16.4

func (m *VolumeAttachmentSource) XXX_Merge(src proto.Message)

func (*VolumeAttachmentSource) XXX_Size added in v0.16.4

func (m *VolumeAttachmentSource) XXX_Size() int

func (*VolumeAttachmentSource) XXX_Unmarshal added in v0.16.4

func (m *VolumeAttachmentSource) XXX_Unmarshal(b []byte) error

type VolumeAttachmentSpec

type VolumeAttachmentSpec struct {
	// Attacher indicates the name of the volume driver that MUST handle this
	// request. This is the name returned by GetPluginName().
	Attacher string `json:"attacher" protobuf:"bytes,1,opt,name=attacher"`

	// Source represents the volume that should be attached.
	Source VolumeAttachmentSource `json:"source" protobuf:"bytes,2,opt,name=source"`

	// The node that the volume should be attached to.
	NodeName string `json:"nodeName" protobuf:"bytes,3,opt,name=nodeName"`
}

VolumeAttachmentSpec is the specification of a VolumeAttachment request.

func (*VolumeAttachmentSpec) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeAttachmentSpec.

func (*VolumeAttachmentSpec) DeepCopyInto

func (in *VolumeAttachmentSpec) DeepCopyInto(out *VolumeAttachmentSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*VolumeAttachmentSpec) Descriptor

func (*VolumeAttachmentSpec) Descriptor() ([]byte, []int)

func (*VolumeAttachmentSpec) Marshal

func (m *VolumeAttachmentSpec) Marshal() (dAtA []byte, err error)

func (*VolumeAttachmentSpec) MarshalTo

func (m *VolumeAttachmentSpec) MarshalTo(dAtA []byte) (int, error)

func (*VolumeAttachmentSpec) MarshalToSizedBuffer added in v0.16.4

func (m *VolumeAttachmentSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VolumeAttachmentSpec) ProtoMessage

func (*VolumeAttachmentSpec) ProtoMessage()

func (*VolumeAttachmentSpec) Reset

func (m *VolumeAttachmentSpec) Reset()

func (*VolumeAttachmentSpec) Size

func (m *VolumeAttachmentSpec) Size() (n int)

func (*VolumeAttachmentSpec) String

func (this *VolumeAttachmentSpec) String() string

func (VolumeAttachmentSpec) SwaggerDoc

func (VolumeAttachmentSpec) SwaggerDoc() map[string]string

func (*VolumeAttachmentSpec) Unmarshal

func (m *VolumeAttachmentSpec) Unmarshal(dAtA []byte) error

func (*VolumeAttachmentSpec) XXX_DiscardUnknown added in v0.16.4

func (m *VolumeAttachmentSpec) XXX_DiscardUnknown()

func (*VolumeAttachmentSpec) XXX_Marshal added in v0.16.4

func (m *VolumeAttachmentSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VolumeAttachmentSpec) XXX_Merge added in v0.16.4

func (m *VolumeAttachmentSpec) XXX_Merge(src proto.Message)

func (*VolumeAttachmentSpec) XXX_Size added in v0.16.4

func (m *VolumeAttachmentSpec) XXX_Size() int

func (*VolumeAttachmentSpec) XXX_Unmarshal added in v0.16.4

func (m *VolumeAttachmentSpec) XXX_Unmarshal(b []byte) error

type VolumeAttachmentStatus

type VolumeAttachmentStatus struct {
	// Indicates the volume is successfully attached.
	// This field must only be set by the entity completing the attach
	// operation, i.e. the external-attacher.
	Attached bool `json:"attached" protobuf:"varint,1,opt,name=attached"`

	// Upon successful attach, this field is populated with any
	// information returned by the attach operation that must be passed
	// into subsequent WaitForAttach or Mount calls.
	// This field must only be set by the entity completing the attach
	// operation, i.e. the external-attacher.
	// +optional
	AttachmentMetadata map[string]string `json:"attachmentMetadata,omitempty" protobuf:"bytes,2,rep,name=attachmentMetadata"`

	// The last error encountered during attach operation, if any.
	// This field must only be set by the entity completing the attach
	// operation, i.e. the external-attacher.
	// +optional
	AttachError *VolumeError `json:"attachError,omitempty" protobuf:"bytes,3,opt,name=attachError,casttype=VolumeError"`

	// The last error encountered during detach operation, if any.
	// This field must only be set by the entity completing the detach
	// operation, i.e. the external-attacher.
	// +optional
	DetachError *VolumeError `json:"detachError,omitempty" protobuf:"bytes,4,opt,name=detachError,casttype=VolumeError"`
}

VolumeAttachmentStatus is the status of a VolumeAttachment request.

func (*VolumeAttachmentStatus) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeAttachmentStatus.

func (*VolumeAttachmentStatus) DeepCopyInto

func (in *VolumeAttachmentStatus) DeepCopyInto(out *VolumeAttachmentStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*VolumeAttachmentStatus) Descriptor

func (*VolumeAttachmentStatus) Descriptor() ([]byte, []int)

func (*VolumeAttachmentStatus) Marshal

func (m *VolumeAttachmentStatus) Marshal() (dAtA []byte, err error)

func (*VolumeAttachmentStatus) MarshalTo

func (m *VolumeAttachmentStatus) MarshalTo(dAtA []byte) (int, error)

func (*VolumeAttachmentStatus) MarshalToSizedBuffer added in v0.16.4

func (m *VolumeAttachmentStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VolumeAttachmentStatus) ProtoMessage

func (*VolumeAttachmentStatus) ProtoMessage()

func (*VolumeAttachmentStatus) Reset

func (m *VolumeAttachmentStatus) Reset()

func (*VolumeAttachmentStatus) Size

func (m *VolumeAttachmentStatus) Size() (n int)

func (*VolumeAttachmentStatus) String

func (this *VolumeAttachmentStatus) String() string

func (VolumeAttachmentStatus) SwaggerDoc

func (VolumeAttachmentStatus) SwaggerDoc() map[string]string

func (*VolumeAttachmentStatus) Unmarshal

func (m *VolumeAttachmentStatus) Unmarshal(dAtA []byte) error

func (*VolumeAttachmentStatus) XXX_DiscardUnknown added in v0.16.4

func (m *VolumeAttachmentStatus) XXX_DiscardUnknown()

func (*VolumeAttachmentStatus) XXX_Marshal added in v0.16.4

func (m *VolumeAttachmentStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VolumeAttachmentStatus) XXX_Merge added in v0.16.4

func (m *VolumeAttachmentStatus) XXX_Merge(src proto.Message)

func (*VolumeAttachmentStatus) XXX_Size added in v0.16.4

func (m *VolumeAttachmentStatus) XXX_Size() int

func (*VolumeAttachmentStatus) XXX_Unmarshal added in v0.16.4

func (m *VolumeAttachmentStatus) XXX_Unmarshal(b []byte) error

type VolumeBindingMode

type VolumeBindingMode string

VolumeBindingMode indicates how PersistentVolumeClaims should be bound.

const (
	// VolumeBindingImmediate indicates that PersistentVolumeClaims should be
	// immediately provisioned and bound.  This is the default mode.
	VolumeBindingImmediate VolumeBindingMode = "Immediate"

	// VolumeBindingWaitForFirstConsumer indicates that PersistentVolumeClaims
	// should not be provisioned and bound until the first Pod is created that
	// references the PeristentVolumeClaim.  The volume provisioning and
	// binding will occur during Pod scheduing.
	VolumeBindingWaitForFirstConsumer VolumeBindingMode = "WaitForFirstConsumer"
)

type VolumeError

type VolumeError struct {
	// Time the error was encountered.
	// +optional
	Time metav1.Time `json:"time,omitempty" protobuf:"bytes,1,opt,name=time"`

	// String detailing the error encountered during Attach or Detach operation.
	// This string may be logged, so it should not contain sensitive
	// information.
	// +optional
	Message string `json:"message,omitempty" protobuf:"bytes,2,opt,name=message"`
}

VolumeError captures an error encountered during a volume operation.

func (*VolumeError) DeepCopy

func (in *VolumeError) DeepCopy() *VolumeError

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeError.

func (*VolumeError) DeepCopyInto

func (in *VolumeError) DeepCopyInto(out *VolumeError)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*VolumeError) Descriptor

func (*VolumeError) Descriptor() ([]byte, []int)

func (*VolumeError) Marshal

func (m *VolumeError) Marshal() (dAtA []byte, err error)

func (*VolumeError) MarshalTo

func (m *VolumeError) MarshalTo(dAtA []byte) (int, error)

func (*VolumeError) MarshalToSizedBuffer added in v0.16.4

func (m *VolumeError) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VolumeError) ProtoMessage

func (*VolumeError) ProtoMessage()

func (*VolumeError) Reset

func (m *VolumeError) Reset()

func (*VolumeError) Size

func (m *VolumeError) Size() (n int)

func (*VolumeError) String

func (this *VolumeError) String() string

func (VolumeError) SwaggerDoc

func (VolumeError) SwaggerDoc() map[string]string

func (*VolumeError) Unmarshal

func (m *VolumeError) Unmarshal(dAtA []byte) error

func (*VolumeError) XXX_DiscardUnknown added in v0.16.4

func (m *VolumeError) XXX_DiscardUnknown()

func (*VolumeError) XXX_Marshal added in v0.16.4

func (m *VolumeError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VolumeError) XXX_Merge added in v0.16.4

func (m *VolumeError) XXX_Merge(src proto.Message)

func (*VolumeError) XXX_Size added in v0.16.4

func (m *VolumeError) XXX_Size() int

func (*VolumeError) XXX_Unmarshal added in v0.16.4

func (m *VolumeError) XXX_Unmarshal(b []byte) error

type VolumeLifecycleMode added in v0.18.0

type VolumeLifecycleMode string

VolumeLifecycleMode is an enumeration of possible usage modes for a volume provided by a CSI driver. More modes may be added in the future.

const (
	// VolumeLifecyclePersistent explicitly confirms that the driver implements
	// the full CSI spec. It is the default when CSIDriverSpec.VolumeLifecycleModes is not
	// set. Such volumes are managed in Kubernetes via the persistent volume
	// claim mechanism and have a lifecycle that is independent of the pods which
	// use them.
	VolumeLifecyclePersistent VolumeLifecycleMode = "Persistent"

	// VolumeLifecycleEphemeral indicates that the driver can be used for
	// ephemeral inline volumes. Such volumes are specified inside the pod
	// spec with a CSIVolumeSource and, as far as Kubernetes is concerned, have
	// a lifecycle that is tied to the lifecycle of the pod. For example, such
	// a volume might contain data that gets created specifically for that pod,
	// like secrets.
	// But how the volume actually gets created and managed is entirely up to
	// the driver. It might also use reference counting to share the same volume
	// instance among different pods if the CSIVolumeSource of those pods is
	// identical.
	VolumeLifecycleEphemeral VolumeLifecycleMode = "Ephemeral"
)

type VolumeNodeResources added in v0.17.0

type VolumeNodeResources struct {
	// Maximum number of unique volumes managed by the CSI driver that can be used on a node.
	// A volume that is both attached and mounted on a node is considered to be used once, not twice.
	// The same rule applies for a unique volume that is shared among multiple pods on the same node.
	// If this field is not specified, then the supported number of volumes on this node is unbounded.
	// +optional
	Count *int32 `json:"count,omitempty" protobuf:"varint,1,opt,name=count"`
}

VolumeNodeResources is a set of resource limits for scheduling of volumes.

func (*VolumeNodeResources) DeepCopy added in v0.17.0

func (in *VolumeNodeResources) DeepCopy() *VolumeNodeResources

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeNodeResources.

func (*VolumeNodeResources) DeepCopyInto added in v0.17.0

func (in *VolumeNodeResources) DeepCopyInto(out *VolumeNodeResources)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*VolumeNodeResources) Descriptor added in v0.17.0

func (*VolumeNodeResources) Descriptor() ([]byte, []int)

func (*VolumeNodeResources) Marshal added in v0.17.0

func (m *VolumeNodeResources) Marshal() (dAtA []byte, err error)

func (*VolumeNodeResources) MarshalTo added in v0.17.0

func (m *VolumeNodeResources) MarshalTo(dAtA []byte) (int, error)

func (*VolumeNodeResources) MarshalToSizedBuffer added in v0.17.0

func (m *VolumeNodeResources) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VolumeNodeResources) ProtoMessage added in v0.17.0

func (*VolumeNodeResources) ProtoMessage()

func (*VolumeNodeResources) Reset added in v0.17.0

func (m *VolumeNodeResources) Reset()

func (*VolumeNodeResources) Size added in v0.17.0

func (m *VolumeNodeResources) Size() (n int)

func (*VolumeNodeResources) String added in v0.17.0

func (this *VolumeNodeResources) String() string

func (VolumeNodeResources) SwaggerDoc added in v0.17.0

func (VolumeNodeResources) SwaggerDoc() map[string]string

func (*VolumeNodeResources) Unmarshal added in v0.17.0

func (m *VolumeNodeResources) Unmarshal(dAtA []byte) error

func (*VolumeNodeResources) XXX_DiscardUnknown added in v0.17.0

func (m *VolumeNodeResources) XXX_DiscardUnknown()

func (*VolumeNodeResources) XXX_Marshal added in v0.17.0

func (m *VolumeNodeResources) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VolumeNodeResources) XXX_Merge added in v0.17.0

func (m *VolumeNodeResources) XXX_Merge(src proto.Message)

func (*VolumeNodeResources) XXX_Size added in v0.17.0

func (m *VolumeNodeResources) XXX_Size() int

func (*VolumeNodeResources) XXX_Unmarshal added in v0.17.0

func (m *VolumeNodeResources) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL