v1

package
v0.30.0 Latest Latest
Warning

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

Go to latest
Published: Apr 17, 2024 License: Apache-2.0 Imports: 13 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"`

	// spec represents the 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.
	//
	// This field is immutable.
	//
	// +optional
	AttachRequired *bool `json:"attachRequired,omitempty" protobuf:"varint,1,opt,name=attachRequired"`

	// podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.)
	// during mount operations, if set to true.
	// 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 VolumeContext 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" if 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.
	//
	// This field was immutable in Kubernetes < 1.29 and now is mutable.
	//
	// +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.
	// This field is immutable.
	//
	// +optional
	// +listType=set
	VolumeLifecycleModes []VolumeLifecycleMode `json:"volumeLifecycleModes,omitempty" protobuf:"bytes,3,opt,name=volumeLifecycleModes"`

	// storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage
	// capacity that the driver deployment will report by creating
	// CSIStorageCapacity objects with capacity information, if set to true.
	//
	// The check can be enabled immediately when deploying a driver.
	// In that case, provisioning new volumes with late binding
	// will pause until the driver deployment has published
	// some suitable CSIStorageCapacity object.
	//
	// Alternatively, the driver can be deployed with the field
	// unset or false and it can be flipped later when storage
	// capacity information has been published.
	//
	// This field was immutable in Kubernetes <= 1.22 and now is mutable.
	//
	// +optional
	// +featureGate=CSIStorageCapacity
	StorageCapacity *bool `json:"storageCapacity,omitempty" protobuf:"bytes,4,opt,name=storageCapacity"`

	// fsGroupPolicy defines if the underlying volume supports changing ownership and
	// permission of the volume before being mounted.
	// Refer to the specific FSGroupPolicy values for additional details.
	//
	// This field was immutable in Kubernetes < 1.29 and now is mutable.
	//
	// Defaults to ReadWriteOnceWithFSType, which will examine each volume
	// to determine if Kubernetes should modify ownership and permissions of the volume.
	// With the default policy the defined fsGroup will only be applied
	// if a fstype is defined and the volume's access mode contains ReadWriteOnce.
	//
	// +optional
	FSGroupPolicy *FSGroupPolicy `json:"fsGroupPolicy,omitempty" protobuf:"bytes,5,opt,name=fsGroupPolicy"`

	// tokenRequests indicates the CSI driver needs pods' service account
	// tokens it is mounting volume for to do necessary authentication. Kubelet
	// will pass the tokens in VolumeContext in the CSI NodePublishVolume calls.
	// The CSI driver should parse and validate the following VolumeContext:
	// "csi.storage.k8s.io/serviceAccount.tokens": {
	//   "<audience>": {
	//     "token": <token>,
	//     "expirationTimestamp": <expiration timestamp in RFC3339>,
	//   },
	//   ...
	// }
	//
	// Note: Audience in each TokenRequest should be different and at
	// most one token is empty string. To receive a new token after expiry,
	// RequiresRepublish can be used to trigger NodePublishVolume periodically.
	//
	// +optional
	// +listType=atomic
	TokenRequests []TokenRequest `json:"tokenRequests,omitempty" protobuf:"bytes,6,opt,name=tokenRequests"`

	// requiresRepublish indicates the CSI driver wants `NodePublishVolume`
	// being periodically called to reflect any possible change in the mounted
	// volume. This field defaults to false.
	//
	// Note: After a successful initial NodePublishVolume call, subsequent calls
	// to NodePublishVolume should only update the contents of the volume. New
	// mount points will not be seen by a running container.
	//
	// +optional
	RequiresRepublish *bool `json:"requiresRepublish,omitempty" protobuf:"varint,7,opt,name=requiresRepublish"`

	// seLinuxMount specifies if the CSI driver supports "-o context"
	// mount option.
	//
	// When "true", the CSI driver must ensure that all volumes provided by this CSI
	// driver can be mounted separately with different `-o context` options. This is
	// typical for storage backends that provide volumes as filesystems on block
	// devices or as independent shared volumes.
	// Kubernetes will call NodeStage / NodePublish with "-o context=xyz" mount
	// option when mounting a ReadWriteOncePod volume used in Pod that has
	// explicitly set SELinux context. In the future, it may be expanded to other
	// volume AccessModes. In any case, Kubernetes will ensure that the volume is
	// mounted only with a single SELinux context.
	//
	// When "false", Kubernetes won't pass any special SELinux mount options to the driver.
	// This is typical for volumes that represent subdirectories of a bigger shared filesystem.
	//
	// Default is "false".
	//
	// +featureGate=SELinuxMountReadWriteOncePod
	// +optional
	SELinuxMount *bool `json:"seLinuxMount,omitempty" protobuf:"varint,8,opt,name=seLinuxMount"`
}

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"`

	// Standard object's metadata.
	// 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 {
	// name represents 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
	// +listType=atomic
	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
	// +listType=map
	// +listMapKey=name
	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 CSIStorageCapacity added in v0.24.0

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

	// Standard object's metadata.
	// The name has no particular meaning. It must be a DNS subdomain (dots allowed, 253 characters).
	// To ensure that there are no conflicts with other CSI drivers on the cluster,
	// the recommendation is to use csisc-<uuid>, a generated name, or a reverse-domain name
	// which ends with the unique CSI driver name.
	//
	// Objects are namespaced.
	//
	// 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"`

	// nodeTopology defines which nodes have access to the storage
	// for which capacity was reported. If not set, the storage is
	// not accessible from any node in the cluster. If empty, the
	// storage is accessible from all nodes. This field is
	// immutable.
	//
	// +optional
	NodeTopology *metav1.LabelSelector `json:"nodeTopology,omitempty" protobuf:"bytes,2,opt,name=nodeTopology"`

	// storageClassName represents the name of the StorageClass that the reported capacity applies to.
	// It must meet the same requirements as the name of a StorageClass
	// object (non-empty, DNS subdomain). If that object no longer exists,
	// the CSIStorageCapacity object is obsolete and should be removed by its
	// creator.
	// This field is immutable.
	StorageClassName string `json:"storageClassName" protobuf:"bytes,3,name=storageClassName"`

	// capacity is the value reported by the CSI driver in its GetCapacityResponse
	// for a GetCapacityRequest with topology and parameters that match the
	// previous fields.
	//
	// The semantic is currently (CSI spec 1.2) defined as:
	// The available capacity, in bytes, of the storage that can be used
	// to provision volumes. If not set, that information is currently
	// unavailable.
	//
	// +optional
	Capacity *resource.Quantity `json:"capacity,omitempty" protobuf:"bytes,4,opt,name=capacity"`

	// maximumVolumeSize is the value reported by the CSI driver in its GetCapacityResponse
	// for a GetCapacityRequest with topology and parameters that match the
	// previous fields.
	//
	// This is defined since CSI spec 1.4.0 as the largest size
	// that may be used in a
	// CreateVolumeRequest.capacity_range.required_bytes field to
	// create a volume with the same parameters as those in
	// GetCapacityRequest. The corresponding value in the Kubernetes
	// API is ResourceRequirements.Requests in a volume claim.
	//
	// +optional
	MaximumVolumeSize *resource.Quantity `json:"maximumVolumeSize,omitempty" protobuf:"bytes,5,opt,name=maximumVolumeSize"`
}

CSIStorageCapacity stores the result of one CSI GetCapacity call. For a given StorageClass, this describes the available capacity in a particular topology segment. This can be used when considering where to instantiate new PersistentVolumes.

For example this can express things like: - StorageClass "standard" has "1234 GiB" available in "topology.kubernetes.io/zone=us-east1" - StorageClass "localssd" has "10 GiB" available in "kubernetes.io/hostname=knode-abc123"

The following three cases all imply that no capacity is available for a certain combination: - no object exists with suitable topology and storage class name - such an object exists, but the capacity is unset - such an object exists, but the capacity is zero

The producer of these objects can decide which approach is more suitable.

They are consumed by the kube-scheduler when a CSI driver opts into capacity-aware scheduling with CSIDriverSpec.StorageCapacity. The scheduler compares the MaximumVolumeSize against the requested size of pending volumes to filter out unsuitable nodes. If MaximumVolumeSize is unset, it falls back to a comparison against the less precise Capacity. If that is also unset, the scheduler assumes that capacity is insufficient and tries some other node.

func (*CSIStorageCapacity) DeepCopy added in v0.24.0

func (in *CSIStorageCapacity) DeepCopy() *CSIStorageCapacity

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

func (*CSIStorageCapacity) DeepCopyInto added in v0.24.0

func (in *CSIStorageCapacity) DeepCopyInto(out *CSIStorageCapacity)

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

func (*CSIStorageCapacity) DeepCopyObject added in v0.24.0

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

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

func (*CSIStorageCapacity) Descriptor added in v0.24.0

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

func (*CSIStorageCapacity) Marshal added in v0.24.0

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

func (*CSIStorageCapacity) MarshalTo added in v0.24.0

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

func (*CSIStorageCapacity) MarshalToSizedBuffer added in v0.24.0

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

func (*CSIStorageCapacity) ProtoMessage added in v0.24.0

func (*CSIStorageCapacity) ProtoMessage()

func (*CSIStorageCapacity) Reset added in v0.24.0

func (m *CSIStorageCapacity) Reset()

func (*CSIStorageCapacity) Size added in v0.24.0

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

func (*CSIStorageCapacity) String added in v0.24.0

func (this *CSIStorageCapacity) String() string

func (CSIStorageCapacity) SwaggerDoc added in v0.24.0

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

func (*CSIStorageCapacity) Unmarshal added in v0.24.0

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

func (*CSIStorageCapacity) XXX_DiscardUnknown added in v0.24.0

func (m *CSIStorageCapacity) XXX_DiscardUnknown()

func (*CSIStorageCapacity) XXX_Marshal added in v0.24.0

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

func (*CSIStorageCapacity) XXX_Merge added in v0.24.0

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

func (*CSIStorageCapacity) XXX_Size added in v0.24.0

func (m *CSIStorageCapacity) XXX_Size() int

func (*CSIStorageCapacity) XXX_Unmarshal added in v0.24.0

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

type CSIStorageCapacityList added in v0.24.0

type CSIStorageCapacityList 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 CSIStorageCapacity objects.
	Items []CSIStorageCapacity `json:"items" protobuf:"bytes,2,rep,name=items"`
}

CSIStorageCapacityList is a collection of CSIStorageCapacity objects.

func (*CSIStorageCapacityList) DeepCopy added in v0.24.0

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

func (*CSIStorageCapacityList) DeepCopyInto added in v0.24.0

func (in *CSIStorageCapacityList) DeepCopyInto(out *CSIStorageCapacityList)

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

func (*CSIStorageCapacityList) DeepCopyObject added in v0.24.0

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

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

func (*CSIStorageCapacityList) Descriptor added in v0.24.0

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

func (*CSIStorageCapacityList) Marshal added in v0.24.0

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

func (*CSIStorageCapacityList) MarshalTo added in v0.24.0

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

func (*CSIStorageCapacityList) MarshalToSizedBuffer added in v0.24.0

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

func (*CSIStorageCapacityList) ProtoMessage added in v0.24.0

func (*CSIStorageCapacityList) ProtoMessage()

func (*CSIStorageCapacityList) Reset added in v0.24.0

func (m *CSIStorageCapacityList) Reset()

func (*CSIStorageCapacityList) Size added in v0.24.0

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

func (*CSIStorageCapacityList) String added in v0.24.0

func (this *CSIStorageCapacityList) String() string

func (CSIStorageCapacityList) SwaggerDoc added in v0.24.0

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

func (*CSIStorageCapacityList) Unmarshal added in v0.24.0

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

func (*CSIStorageCapacityList) XXX_DiscardUnknown added in v0.24.0

func (m *CSIStorageCapacityList) XXX_DiscardUnknown()

func (*CSIStorageCapacityList) XXX_Marshal added in v0.24.0

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

func (*CSIStorageCapacityList) XXX_Merge added in v0.24.0

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

func (*CSIStorageCapacityList) XXX_Size added in v0.24.0

func (m *CSIStorageCapacityList) XXX_Size() int

func (*CSIStorageCapacityList) XXX_Unmarshal added in v0.24.0

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

type FSGroupPolicy added in v0.19.0

type FSGroupPolicy string

FSGroupPolicy specifies if a CSI Driver supports modifying volume ownership and permissions of the volume to be mounted. More modes may be added in the future.

const (
	// ReadWriteOnceWithFSTypeFSGroupPolicy indicates that each volume will be examined
	// to determine if the volume ownership and permissions
	// should be modified. If a fstype is defined and the volume's access mode
	// contains ReadWriteOnce, then the defined fsGroup will be applied.
	// This mode should be defined if it's expected that the
	// fsGroup may need to be modified depending on the pod's SecurityPolicy.
	// This is the default behavior if no other FSGroupPolicy is defined.
	ReadWriteOnceWithFSTypeFSGroupPolicy FSGroupPolicy = "ReadWriteOnceWithFSType"

	// FileFSGroupPolicy indicates that CSI driver supports volume ownership
	// and permission change via fsGroup, and Kubernetes will change the permissions
	// and ownership of every file in the volume to match the user requested fsGroup in
	// the pod's SecurityPolicy regardless of fstype or access mode.
	// Use this mode if Kubernetes should modify the permissions and ownership
	// of the volume.
	FileFSGroupPolicy FSGroupPolicy = "File"

	// NoneFSGroupPolicy indicates that volumes will be mounted without performing
	// any ownership or permission modifications, as the CSIDriver does not support
	// these operations.
	// This mode should be selected if the CSIDriver does not support fsGroup modifications,
	// for example when Kubernetes cannot change ownership and permissions on a volume due
	// to root-squash settings on a NFS volume.
	NoneFSGroupPolicy FSGroupPolicy = "None"
)

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"`

	// reclaimPolicy controls the reclaimPolicy for dynamically provisioned PersistentVolumes of this storage class.
	// Defaults to Delete.
	// +optional
	ReclaimPolicy *v1.PersistentVolumeReclaimPolicy `` /* 130-byte string literal not displayed */

	// mountOptions controls the mountOptions for dynamically provisioned PersistentVolumes of this storage class.
	// e.g. ["ro", "soft"]. Not validated -
	// mount of the PVs will simply fail if one is invalid.
	// +optional
	// +listType=atomic
	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"`

	// allowedTopologies 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
	// +listType=atomic
	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 TokenRequest added in v0.20.0

type TokenRequest struct {
	// audience is the intended audience of the token in "TokenRequestSpec".
	// It will default to the audiences of kube apiserver.
	Audience string `json:"audience" protobuf:"bytes,1,opt,name=audience"`

	// expirationSeconds is the duration of validity of the token in "TokenRequestSpec".
	// It has the same default value of "ExpirationSeconds" in "TokenRequestSpec".
	//
	// +optional
	ExpirationSeconds *int64 `json:"expirationSeconds,omitempty" protobuf:"varint,2,opt,name=expirationSeconds"`
}

TokenRequest contains parameters of a service account token.

func (*TokenRequest) DeepCopy added in v0.20.0

func (in *TokenRequest) DeepCopy() *TokenRequest

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

func (*TokenRequest) DeepCopyInto added in v0.20.0

func (in *TokenRequest) DeepCopyInto(out *TokenRequest)

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

func (*TokenRequest) Descriptor added in v0.20.0

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

func (*TokenRequest) Marshal added in v0.20.0

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

func (*TokenRequest) MarshalTo added in v0.20.0

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

func (*TokenRequest) MarshalToSizedBuffer added in v0.20.0

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

func (*TokenRequest) ProtoMessage added in v0.20.0

func (*TokenRequest) ProtoMessage()

func (*TokenRequest) Reset added in v0.20.0

func (m *TokenRequest) Reset()

func (*TokenRequest) Size added in v0.20.0

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

func (*TokenRequest) String added in v0.20.0

func (this *TokenRequest) String() string

func (TokenRequest) SwaggerDoc added in v0.20.0

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

func (*TokenRequest) Unmarshal added in v0.20.0

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

func (*TokenRequest) XXX_DiscardUnknown added in v0.20.0

func (m *TokenRequest) XXX_DiscardUnknown()

func (*TokenRequest) XXX_Marshal added in v0.20.0

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

func (*TokenRequest) XXX_Merge added in v0.20.0

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

func (*TokenRequest) XXX_Size added in v0.20.0

func (m *TokenRequest) XXX_Size() int

func (*TokenRequest) XXX_Unmarshal added in v0.20.0

func (m *TokenRequest) 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"`

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

	// status represents 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 {
	// persistentVolumeName represents the 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 beta-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"`

	// nodeName represents 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 {
	// attached 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"`

	// attachmentMetadata is populated with any
	// information returned by the attach operation, upon successful attach, 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"`

	// attachError represents 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"`

	// detachError represents 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. +enum

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 represents the time the error was encountered.
	// +optional
	Time metav1.Time `json:"time,omitempty" protobuf:"bytes,1,opt,name=time"`

	// message represents 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 {
	// count indicates the 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