v1beta1

package
v1.2.2 Latest Latest
Warning

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

Go to latest
Published: Jan 12, 2022 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

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

Functions

This section is empty.

Types

type CSIDriver added in v1.2.2

type CSIDriver struct {
	// 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
	Metadata *v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Specification of the CSI Driver.
	Spec                 *CSIDriverSpec `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. CSI drivers do not need to create the CSIDriver object directly. Instead they may use the cluster-driver-registrar sidecar container. When deployed with a CSI driver it automatically creates a CSIDriver object representing the driver. 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) Descriptor added in v1.2.2

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

func (*CSIDriver) GetMetadata added in v1.2.2

func (m *CSIDriver) GetMetadata() *v1.ObjectMeta

func (*CSIDriver) GetSpec added in v1.2.2

func (m *CSIDriver) GetSpec() *CSIDriverSpec

func (*CSIDriver) Marshal added in v1.2.2

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

func (*CSIDriver) MarshalTo added in v1.2.2

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

func (*CSIDriver) MarshalToSizedBuffer added in v1.2.2

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

func (*CSIDriver) ProtoMessage added in v1.2.2

func (*CSIDriver) ProtoMessage()

func (*CSIDriver) Reset added in v1.2.2

func (m *CSIDriver) Reset()

func (*CSIDriver) Size added in v1.2.2

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

func (*CSIDriver) String added in v1.2.2

func (m *CSIDriver) String() string

func (*CSIDriver) Unmarshal added in v1.2.2

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

func (*CSIDriver) XXX_DiscardUnknown added in v1.2.2

func (m *CSIDriver) XXX_DiscardUnknown()

func (*CSIDriver) XXX_Marshal added in v1.2.2

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

func (*CSIDriver) XXX_Merge added in v1.2.2

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

func (*CSIDriver) XXX_Size added in v1.2.2

func (m *CSIDriver) XXX_Size() int

func (*CSIDriver) XXX_Unmarshal added in v1.2.2

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

type CSIDriverList added in v1.2.2

type CSIDriverList struct {
	// Standard list metadata
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	Metadata *v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// items is the list of CSIDriver
	Items                []*CSIDriver `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

CSIDriverList is a collection of CSIDriver objects.

func (*CSIDriverList) Descriptor added in v1.2.2

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

func (*CSIDriverList) GetItems added in v1.2.2

func (m *CSIDriverList) GetItems() []*CSIDriver

func (*CSIDriverList) GetMetadata added in v1.2.2

func (m *CSIDriverList) GetMetadata() *v1.ListMeta

func (*CSIDriverList) Marshal added in v1.2.2

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

func (*CSIDriverList) MarshalTo added in v1.2.2

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

func (*CSIDriverList) MarshalToSizedBuffer added in v1.2.2

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

func (*CSIDriverList) ProtoMessage added in v1.2.2

func (*CSIDriverList) ProtoMessage()

func (*CSIDriverList) Reset added in v1.2.2

func (m *CSIDriverList) Reset()

func (*CSIDriverList) Size added in v1.2.2

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

func (*CSIDriverList) String added in v1.2.2

func (m *CSIDriverList) String() string

func (*CSIDriverList) Unmarshal added in v1.2.2

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

func (*CSIDriverList) XXX_DiscardUnknown added in v1.2.2

func (m *CSIDriverList) XXX_DiscardUnknown()

func (*CSIDriverList) XXX_Marshal added in v1.2.2

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

func (*CSIDriverList) XXX_Merge added in v1.2.2

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

func (*CSIDriverList) XXX_Size added in v1.2.2

func (m *CSIDriverList) XXX_Size() int

func (*CSIDriverList) XXX_Unmarshal added in v1.2.2

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

type CSIDriverSpec added in v1.2.2

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 `protobuf:"varint,1,opt,name=attachRequired" json:"attachRequired,omitempty"`
	// 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 `protobuf:"varint,2,opt,name=podInfoOnMount" json:"podInfoOnMount,omitempty"`
	// 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.
	// +optional
	VolumeLifecycleModes []string `protobuf:"bytes,3,rep,name=volumeLifecycleModes" json:"volumeLifecycleModes,omitempty"`
	// If set to true, 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.
	//
	// 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 is an alpha field and only available when the CSIStorageCapacity
	// feature is enabled. The default is false.
	//
	// +optional
	StorageCapacity *bool `protobuf:"varint,4,opt,name=storageCapacity" json:"storageCapacity,omitempty"`
	// 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 is alpha-level, and is only honored by servers
	// that enable the CSIVolumeFSGroupPolicy feature gate.
	// +optional
	FsGroupPolicy *string `protobuf:"bytes,5,opt,name=fsGroupPolicy" json:"fsGroupPolicy,omitempty"`
	// 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.
	//
	// This is an alpha feature and only available when the
	// CSIServiceAccountToken feature is enabled.
	//
	// +optional
	// +listType=atomic
	TokenRequests []*TokenRequest `protobuf:"bytes,6,rep,name=tokenRequests" json:"tokenRequests,omitempty"`
	// 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.
	//
	// This is an alpha feature and only available when the
	// CSIServiceAccountToken feature is enabled.
	//
	// +optional
	RequiresRepublish    *bool    `protobuf:"varint,7,opt,name=requiresRepublish" json:"requiresRepublish,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

CSIDriverSpec is the specification of a CSIDriver.

func (*CSIDriverSpec) Descriptor added in v1.2.2

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

func (*CSIDriverSpec) GetAttachRequired added in v1.2.2

func (m *CSIDriverSpec) GetAttachRequired() bool

func (*CSIDriverSpec) GetFsGroupPolicy added in v1.2.2

func (m *CSIDriverSpec) GetFsGroupPolicy() string

func (*CSIDriverSpec) GetPodInfoOnMount added in v1.2.2

func (m *CSIDriverSpec) GetPodInfoOnMount() bool

func (*CSIDriverSpec) GetRequiresRepublish added in v1.2.2

func (m *CSIDriverSpec) GetRequiresRepublish() bool

func (*CSIDriverSpec) GetStorageCapacity added in v1.2.2

func (m *CSIDriverSpec) GetStorageCapacity() bool

func (*CSIDriverSpec) GetTokenRequests added in v1.2.2

func (m *CSIDriverSpec) GetTokenRequests() []*TokenRequest

func (*CSIDriverSpec) GetVolumeLifecycleModes added in v1.2.2

func (m *CSIDriverSpec) GetVolumeLifecycleModes() []string

func (*CSIDriverSpec) Marshal added in v1.2.2

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

func (*CSIDriverSpec) MarshalTo added in v1.2.2

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

func (*CSIDriverSpec) MarshalToSizedBuffer added in v1.2.2

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

func (*CSIDriverSpec) ProtoMessage added in v1.2.2

func (*CSIDriverSpec) ProtoMessage()

func (*CSIDriverSpec) Reset added in v1.2.2

func (m *CSIDriverSpec) Reset()

func (*CSIDriverSpec) Size added in v1.2.2

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

func (*CSIDriverSpec) String added in v1.2.2

func (m *CSIDriverSpec) String() string

func (*CSIDriverSpec) Unmarshal added in v1.2.2

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

func (*CSIDriverSpec) XXX_DiscardUnknown added in v1.2.2

func (m *CSIDriverSpec) XXX_DiscardUnknown()

func (*CSIDriverSpec) XXX_Marshal added in v1.2.2

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

func (*CSIDriverSpec) XXX_Merge added in v1.2.2

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

func (*CSIDriverSpec) XXX_Size added in v1.2.2

func (m *CSIDriverSpec) XXX_Size() int

func (*CSIDriverSpec) XXX_Unmarshal added in v1.2.2

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

type CSINode added in v1.2.2

type CSINode struct {
	// metadata.name must be the Kubernetes node name.
	Metadata *v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// spec is the specification of CSINode
	Spec                 *CSINodeSpec `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

DEPRECATED - This group version of CSINode is deprecated by storage/v1/CSINode. See the release notes for more information. 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) Descriptor added in v1.2.2

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

func (*CSINode) GetMetadata added in v1.2.2

func (m *CSINode) GetMetadata() *v1.ObjectMeta

func (*CSINode) GetSpec added in v1.2.2

func (m *CSINode) GetSpec() *CSINodeSpec

func (*CSINode) Marshal added in v1.2.2

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

func (*CSINode) MarshalTo added in v1.2.2

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

func (*CSINode) MarshalToSizedBuffer added in v1.2.2

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

func (*CSINode) ProtoMessage added in v1.2.2

func (*CSINode) ProtoMessage()

func (*CSINode) Reset added in v1.2.2

func (m *CSINode) Reset()

func (*CSINode) Size added in v1.2.2

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

func (*CSINode) String added in v1.2.2

func (m *CSINode) String() string

func (*CSINode) Unmarshal added in v1.2.2

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

func (*CSINode) XXX_DiscardUnknown added in v1.2.2

func (m *CSINode) XXX_DiscardUnknown()

func (*CSINode) XXX_Marshal added in v1.2.2

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

func (*CSINode) XXX_Merge added in v1.2.2

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

func (*CSINode) XXX_Size added in v1.2.2

func (m *CSINode) XXX_Size() int

func (*CSINode) XXX_Unmarshal added in v1.2.2

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

type CSINodeDriver added in v1.2.2

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 `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
	// 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 `protobuf:"bytes,2,opt,name=nodeID" json:"nodeID,omitempty"`
	// 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 `protobuf:"bytes,3,rep,name=topologyKeys" json:"topologyKeys,omitempty"`
	// allocatable represents the volume resources of a node that are available for scheduling.
	// +optional
	Allocatable          *VolumeNodeResources `protobuf:"bytes,4,opt,name=allocatable" json:"allocatable,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

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

func (*CSINodeDriver) Descriptor added in v1.2.2

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

func (*CSINodeDriver) GetAllocatable added in v1.2.2

func (m *CSINodeDriver) GetAllocatable() *VolumeNodeResources

func (*CSINodeDriver) GetName added in v1.2.2

func (m *CSINodeDriver) GetName() string

func (*CSINodeDriver) GetNodeID added in v1.2.2

func (m *CSINodeDriver) GetNodeID() string

func (*CSINodeDriver) GetTopologyKeys added in v1.2.2

func (m *CSINodeDriver) GetTopologyKeys() []string

func (*CSINodeDriver) Marshal added in v1.2.2

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

func (*CSINodeDriver) MarshalTo added in v1.2.2

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

func (*CSINodeDriver) MarshalToSizedBuffer added in v1.2.2

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

func (*CSINodeDriver) ProtoMessage added in v1.2.2

func (*CSINodeDriver) ProtoMessage()

func (*CSINodeDriver) Reset added in v1.2.2

func (m *CSINodeDriver) Reset()

func (*CSINodeDriver) Size added in v1.2.2

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

func (*CSINodeDriver) String added in v1.2.2

func (m *CSINodeDriver) String() string

func (*CSINodeDriver) Unmarshal added in v1.2.2

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

func (*CSINodeDriver) XXX_DiscardUnknown added in v1.2.2

func (m *CSINodeDriver) XXX_DiscardUnknown()

func (*CSINodeDriver) XXX_Marshal added in v1.2.2

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

func (*CSINodeDriver) XXX_Merge added in v1.2.2

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

func (*CSINodeDriver) XXX_Size added in v1.2.2

func (m *CSINodeDriver) XXX_Size() int

func (*CSINodeDriver) XXX_Unmarshal added in v1.2.2

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

type CSINodeList added in v1.2.2

type CSINodeList struct {
	// Standard list metadata
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	Metadata *v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// items is the list of CSINode
	Items                []*CSINode `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

CSINodeList is a collection of CSINode objects.

func (*CSINodeList) Descriptor added in v1.2.2

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

func (*CSINodeList) GetItems added in v1.2.2

func (m *CSINodeList) GetItems() []*CSINode

func (*CSINodeList) GetMetadata added in v1.2.2

func (m *CSINodeList) GetMetadata() *v1.ListMeta

func (*CSINodeList) Marshal added in v1.2.2

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

func (*CSINodeList) MarshalTo added in v1.2.2

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

func (*CSINodeList) MarshalToSizedBuffer added in v1.2.2

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

func (*CSINodeList) ProtoMessage added in v1.2.2

func (*CSINodeList) ProtoMessage()

func (*CSINodeList) Reset added in v1.2.2

func (m *CSINodeList) Reset()

func (*CSINodeList) Size added in v1.2.2

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

func (*CSINodeList) String added in v1.2.2

func (m *CSINodeList) String() string

func (*CSINodeList) Unmarshal added in v1.2.2

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

func (*CSINodeList) XXX_DiscardUnknown added in v1.2.2

func (m *CSINodeList) XXX_DiscardUnknown()

func (*CSINodeList) XXX_Marshal added in v1.2.2

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

func (*CSINodeList) XXX_Merge added in v1.2.2

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

func (*CSINodeList) XXX_Size added in v1.2.2

func (m *CSINodeList) XXX_Size() int

func (*CSINodeList) XXX_Unmarshal added in v1.2.2

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

type CSINodeSpec added in v1.2.2

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 `protobuf:"bytes,1,rep,name=drivers" json:"drivers,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

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

func (*CSINodeSpec) Descriptor added in v1.2.2

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

func (*CSINodeSpec) GetDrivers added in v1.2.2

func (m *CSINodeSpec) GetDrivers() []*CSINodeDriver

func (*CSINodeSpec) Marshal added in v1.2.2

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

func (*CSINodeSpec) MarshalTo added in v1.2.2

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

func (*CSINodeSpec) MarshalToSizedBuffer added in v1.2.2

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

func (*CSINodeSpec) ProtoMessage added in v1.2.2

func (*CSINodeSpec) ProtoMessage()

func (*CSINodeSpec) Reset added in v1.2.2

func (m *CSINodeSpec) Reset()

func (*CSINodeSpec) Size added in v1.2.2

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

func (*CSINodeSpec) String added in v1.2.2

func (m *CSINodeSpec) String() string

func (*CSINodeSpec) Unmarshal added in v1.2.2

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

func (*CSINodeSpec) XXX_DiscardUnknown added in v1.2.2

func (m *CSINodeSpec) XXX_DiscardUnknown()

func (*CSINodeSpec) XXX_Marshal added in v1.2.2

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

func (*CSINodeSpec) XXX_Merge added in v1.2.2

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

func (*CSINodeSpec) XXX_Size added in v1.2.2

func (m *CSINodeSpec) XXX_Size() int

func (*CSINodeSpec) XXX_Unmarshal added in v1.2.2

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

type StorageClass

type StorageClass struct {
	// Standard object's metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	Metadata *v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Provisioner indicates the type of the provisioner.
	Provisioner *string `protobuf:"bytes,2,opt,name=provisioner" json:"provisioner,omitempty"`
	// Parameters holds the parameters for the provisioner that should
	// create volumes of this storage class.
	// +optional
	Parameters map[string]string `` /* 140-byte string literal not displayed */
	// Dynamically provisioned PersistentVolumes of this storage class are
	// created with this reclaimPolicy. Defaults to Delete.
	// +optional
	ReclaimPolicy *string `protobuf:"bytes,4,opt,name=reclaimPolicy" json:"reclaimPolicy,omitempty"`
	// 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 `protobuf:"bytes,5,rep,name=mountOptions" json:"mountOptions,omitempty"`
	// AllowVolumeExpansion shows whether the storage class allow volume expand
	// +optional
	AllowVolumeExpansion *bool `protobuf:"varint,6,opt,name=allowVolumeExpansion" json:"allowVolumeExpansion,omitempty"`
	// 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 *string `protobuf:"bytes,7,opt,name=volumeBindingMode" json:"volumeBindingMode,omitempty"`
	// 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    []*v11.TopologySelectorTerm `protobuf:"bytes,8,rep,name=allowedTopologies" json:"allowedTopologies,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

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) Descriptor

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

func (*StorageClass) GetAllowVolumeExpansion added in v1.0.0

func (m *StorageClass) GetAllowVolumeExpansion() bool

func (*StorageClass) GetAllowedTopologies added in v1.2.1

func (m *StorageClass) GetAllowedTopologies() []*v11.TopologySelectorTerm

func (*StorageClass) GetMetadata

func (m *StorageClass) GetMetadata() *v1.ObjectMeta

func (*StorageClass) GetMountOptions added in v1.0.0

func (m *StorageClass) GetMountOptions() []string

func (*StorageClass) GetParameters

func (m *StorageClass) GetParameters() map[string]string

func (*StorageClass) GetProvisioner

func (m *StorageClass) GetProvisioner() string

func (*StorageClass) GetReclaimPolicy added in v1.0.0

func (m *StorageClass) GetReclaimPolicy() string

func (*StorageClass) GetVolumeBindingMode added in v1.0.0

func (m *StorageClass) GetVolumeBindingMode() string

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 v1.2.1

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 (m *StorageClass) String() string

func (*StorageClass) Unmarshal

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

func (*StorageClass) XXX_DiscardUnknown added in v1.2.1

func (m *StorageClass) XXX_DiscardUnknown()

func (*StorageClass) XXX_Marshal added in v1.2.1

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

func (*StorageClass) XXX_Merge added in v1.2.1

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

func (*StorageClass) XXX_Size added in v1.2.1

func (m *StorageClass) XXX_Size() int

func (*StorageClass) XXX_Unmarshal added in v1.2.1

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

type StorageClassList

type StorageClassList struct {
	// Standard list metadata
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	Metadata *v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Items is the list of StorageClasses
	Items                []*StorageClass `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

StorageClassList is a collection of storage classes.

func (*StorageClassList) Descriptor

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

func (*StorageClassList) GetItems

func (m *StorageClassList) GetItems() []*StorageClass

func (*StorageClassList) GetMetadata

func (m *StorageClassList) GetMetadata() *v1.ListMeta

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 v1.2.1

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 (m *StorageClassList) String() string

func (*StorageClassList) Unmarshal

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

func (*StorageClassList) XXX_DiscardUnknown added in v1.2.1

func (m *StorageClassList) XXX_DiscardUnknown()

func (*StorageClassList) XXX_Marshal added in v1.2.1

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

func (*StorageClassList) XXX_Merge added in v1.2.1

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

func (*StorageClassList) XXX_Size added in v1.2.1

func (m *StorageClassList) XXX_Size() int

func (*StorageClassList) XXX_Unmarshal added in v1.2.1

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

type TokenRequest added in v1.2.2

type TokenRequest struct {
	// Audience is the intended audience of the token in "TokenRequestSpec".
	// It will default to the audiences of kube apiserver.
	Audience *string `protobuf:"bytes,1,opt,name=audience" json:"audience,omitempty"`
	// ExpirationSeconds is the duration of validity of the token in "TokenRequestSpec".
	// It has the same default value of "ExpirationSeconds" in "TokenRequestSpec"
	//
	// +optional
	ExpirationSeconds    *int64   `protobuf:"varint,2,opt,name=expirationSeconds" json:"expirationSeconds,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

TokenRequest contains parameters of a service account token.

func (*TokenRequest) Descriptor added in v1.2.2

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

func (*TokenRequest) GetAudience added in v1.2.2

func (m *TokenRequest) GetAudience() string

func (*TokenRequest) GetExpirationSeconds added in v1.2.2

func (m *TokenRequest) GetExpirationSeconds() int64

func (*TokenRequest) Marshal added in v1.2.2

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

func (*TokenRequest) MarshalTo added in v1.2.2

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

func (*TokenRequest) MarshalToSizedBuffer added in v1.2.2

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

func (*TokenRequest) ProtoMessage added in v1.2.2

func (*TokenRequest) ProtoMessage()

func (*TokenRequest) Reset added in v1.2.2

func (m *TokenRequest) Reset()

func (*TokenRequest) Size added in v1.2.2

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

func (*TokenRequest) String added in v1.2.2

func (m *TokenRequest) String() string

func (*TokenRequest) Unmarshal added in v1.2.2

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

func (*TokenRequest) XXX_DiscardUnknown added in v1.2.2

func (m *TokenRequest) XXX_DiscardUnknown()

func (*TokenRequest) XXX_Marshal added in v1.2.2

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

func (*TokenRequest) XXX_Merge added in v1.2.2

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

func (*TokenRequest) XXX_Size added in v1.2.2

func (m *TokenRequest) XXX_Size() int

func (*TokenRequest) XXX_Unmarshal added in v1.2.2

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

type VolumeAttachment added in v1.1.0

type VolumeAttachment struct {
	// Standard object metadata.
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	Metadata *v1.ObjectMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Specification of the desired attach/detach volume behavior.
	// Populated by the Kubernetes system.
	Spec *VolumeAttachmentSpec `protobuf:"bytes,2,opt,name=spec" json:"spec,omitempty"`
	// Status of the VolumeAttachment request.
	// Populated by the entity completing the attach or detach
	// operation, i.e. the external-attacher.
	// +optional
	Status               *VolumeAttachmentStatus `protobuf:"bytes,3,opt,name=status" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

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

VolumeAttachment objects are non-namespaced.

func (*VolumeAttachment) Descriptor added in v1.1.0

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

func (*VolumeAttachment) GetMetadata added in v1.1.0

func (m *VolumeAttachment) GetMetadata() *v1.ObjectMeta

func (*VolumeAttachment) GetSpec added in v1.1.0

func (m *VolumeAttachment) GetSpec() *VolumeAttachmentSpec

func (*VolumeAttachment) GetStatus added in v1.1.0

func (m *VolumeAttachment) GetStatus() *VolumeAttachmentStatus

func (*VolumeAttachment) Marshal added in v1.1.0

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

func (*VolumeAttachment) MarshalTo added in v1.1.0

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

func (*VolumeAttachment) MarshalToSizedBuffer added in v1.2.1

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

func (*VolumeAttachment) ProtoMessage added in v1.1.0

func (*VolumeAttachment) ProtoMessage()

func (*VolumeAttachment) Reset added in v1.1.0

func (m *VolumeAttachment) Reset()

func (*VolumeAttachment) Size added in v1.1.0

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

func (*VolumeAttachment) String added in v1.1.0

func (m *VolumeAttachment) String() string

func (*VolumeAttachment) Unmarshal added in v1.1.0

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

func (*VolumeAttachment) XXX_DiscardUnknown added in v1.2.1

func (m *VolumeAttachment) XXX_DiscardUnknown()

func (*VolumeAttachment) XXX_Marshal added in v1.2.1

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

func (*VolumeAttachment) XXX_Merge added in v1.2.1

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

func (*VolumeAttachment) XXX_Size added in v1.2.1

func (m *VolumeAttachment) XXX_Size() int

func (*VolumeAttachment) XXX_Unmarshal added in v1.2.1

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

type VolumeAttachmentList added in v1.1.0

type VolumeAttachmentList struct {
	// Standard list metadata
	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	// +optional
	Metadata *v1.ListMeta `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"`
	// Items is the list of VolumeAttachments
	Items                []*VolumeAttachment `protobuf:"bytes,2,rep,name=items" json:"items,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

VolumeAttachmentList is a collection of VolumeAttachment objects.

func (*VolumeAttachmentList) Descriptor added in v1.1.0

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

func (*VolumeAttachmentList) GetItems added in v1.1.0

func (m *VolumeAttachmentList) GetItems() []*VolumeAttachment

func (*VolumeAttachmentList) GetMetadata added in v1.1.0

func (m *VolumeAttachmentList) GetMetadata() *v1.ListMeta

func (*VolumeAttachmentList) Marshal added in v1.1.0

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

func (*VolumeAttachmentList) MarshalTo added in v1.1.0

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

func (*VolumeAttachmentList) MarshalToSizedBuffer added in v1.2.1

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

func (*VolumeAttachmentList) ProtoMessage added in v1.1.0

func (*VolumeAttachmentList) ProtoMessage()

func (*VolumeAttachmentList) Reset added in v1.1.0

func (m *VolumeAttachmentList) Reset()

func (*VolumeAttachmentList) Size added in v1.1.0

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

func (*VolumeAttachmentList) String added in v1.1.0

func (m *VolumeAttachmentList) String() string

func (*VolumeAttachmentList) Unmarshal added in v1.1.0

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

func (*VolumeAttachmentList) XXX_DiscardUnknown added in v1.2.1

func (m *VolumeAttachmentList) XXX_DiscardUnknown()

func (*VolumeAttachmentList) XXX_Marshal added in v1.2.1

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

func (*VolumeAttachmentList) XXX_Merge added in v1.2.1

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

func (*VolumeAttachmentList) XXX_Size added in v1.2.1

func (m *VolumeAttachmentList) XXX_Size() int

func (*VolumeAttachmentList) XXX_Unmarshal added in v1.2.1

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

type VolumeAttachmentSource added in v1.1.0

type VolumeAttachmentSource struct {
	// Name of the persistent volume to attach.
	// +optional
	PersistentVolumeName *string `protobuf:"bytes,1,opt,name=persistentVolumeName" json:"persistentVolumeName,omitempty"`
	// 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     *v11.PersistentVolumeSpec `protobuf:"bytes,2,opt,name=inlineVolumeSpec" json:"inlineVolumeSpec,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

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) Descriptor added in v1.1.0

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

func (*VolumeAttachmentSource) GetInlineVolumeSpec added in v1.2.2

func (m *VolumeAttachmentSource) GetInlineVolumeSpec() *v11.PersistentVolumeSpec

func (*VolumeAttachmentSource) GetPersistentVolumeName added in v1.1.0

func (m *VolumeAttachmentSource) GetPersistentVolumeName() string

func (*VolumeAttachmentSource) Marshal added in v1.1.0

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

func (*VolumeAttachmentSource) MarshalTo added in v1.1.0

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

func (*VolumeAttachmentSource) MarshalToSizedBuffer added in v1.2.1

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

func (*VolumeAttachmentSource) ProtoMessage added in v1.1.0

func (*VolumeAttachmentSource) ProtoMessage()

func (*VolumeAttachmentSource) Reset added in v1.1.0

func (m *VolumeAttachmentSource) Reset()

func (*VolumeAttachmentSource) Size added in v1.1.0

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

func (*VolumeAttachmentSource) String added in v1.1.0

func (m *VolumeAttachmentSource) String() string

func (*VolumeAttachmentSource) Unmarshal added in v1.1.0

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

func (*VolumeAttachmentSource) XXX_DiscardUnknown added in v1.2.1

func (m *VolumeAttachmentSource) XXX_DiscardUnknown()

func (*VolumeAttachmentSource) XXX_Marshal added in v1.2.1

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

func (*VolumeAttachmentSource) XXX_Merge added in v1.2.1

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

func (*VolumeAttachmentSource) XXX_Size added in v1.2.1

func (m *VolumeAttachmentSource) XXX_Size() int

func (*VolumeAttachmentSource) XXX_Unmarshal added in v1.2.1

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

type VolumeAttachmentSpec added in v1.1.0

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 `protobuf:"bytes,1,opt,name=attacher" json:"attacher,omitempty"`
	// Source represents the volume that should be attached.
	Source *VolumeAttachmentSource `protobuf:"bytes,2,opt,name=source" json:"source,omitempty"`
	// The node that the volume should be attached to.
	NodeName             *string  `protobuf:"bytes,3,opt,name=nodeName" json:"nodeName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

VolumeAttachmentSpec is the specification of a VolumeAttachment request.

func (*VolumeAttachmentSpec) Descriptor added in v1.1.0

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

func (*VolumeAttachmentSpec) GetAttacher added in v1.1.0

func (m *VolumeAttachmentSpec) GetAttacher() string

func (*VolumeAttachmentSpec) GetNodeName added in v1.1.0

func (m *VolumeAttachmentSpec) GetNodeName() string

func (*VolumeAttachmentSpec) GetSource added in v1.1.0

func (*VolumeAttachmentSpec) Marshal added in v1.1.0

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

func (*VolumeAttachmentSpec) MarshalTo added in v1.1.0

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

func (*VolumeAttachmentSpec) MarshalToSizedBuffer added in v1.2.1

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

func (*VolumeAttachmentSpec) ProtoMessage added in v1.1.0

func (*VolumeAttachmentSpec) ProtoMessage()

func (*VolumeAttachmentSpec) Reset added in v1.1.0

func (m *VolumeAttachmentSpec) Reset()

func (*VolumeAttachmentSpec) Size added in v1.1.0

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

func (*VolumeAttachmentSpec) String added in v1.1.0

func (m *VolumeAttachmentSpec) String() string

func (*VolumeAttachmentSpec) Unmarshal added in v1.1.0

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

func (*VolumeAttachmentSpec) XXX_DiscardUnknown added in v1.2.1

func (m *VolumeAttachmentSpec) XXX_DiscardUnknown()

func (*VolumeAttachmentSpec) XXX_Marshal added in v1.2.1

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

func (*VolumeAttachmentSpec) XXX_Merge added in v1.2.1

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

func (*VolumeAttachmentSpec) XXX_Size added in v1.2.1

func (m *VolumeAttachmentSpec) XXX_Size() int

func (*VolumeAttachmentSpec) XXX_Unmarshal added in v1.2.1

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

type VolumeAttachmentStatus added in v1.1.0

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 `protobuf:"varint,1,opt,name=attached" json:"attached,omitempty"`
	// 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 `` /* 156-byte string literal not displayed */
	// 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 `protobuf:"bytes,3,opt,name=attachError" json:"attachError,omitempty"`
	// 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 `protobuf:"bytes,4,opt,name=detachError" json:"detachError,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

VolumeAttachmentStatus is the status of a VolumeAttachment request.

func (*VolumeAttachmentStatus) Descriptor added in v1.1.0

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

func (*VolumeAttachmentStatus) GetAttachError added in v1.1.0

func (m *VolumeAttachmentStatus) GetAttachError() *VolumeError

func (*VolumeAttachmentStatus) GetAttached added in v1.1.0

func (m *VolumeAttachmentStatus) GetAttached() bool

func (*VolumeAttachmentStatus) GetAttachmentMetadata added in v1.1.0

func (m *VolumeAttachmentStatus) GetAttachmentMetadata() map[string]string

func (*VolumeAttachmentStatus) GetDetachError added in v1.1.0

func (m *VolumeAttachmentStatus) GetDetachError() *VolumeError

func (*VolumeAttachmentStatus) Marshal added in v1.1.0

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

func (*VolumeAttachmentStatus) MarshalTo added in v1.1.0

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

func (*VolumeAttachmentStatus) MarshalToSizedBuffer added in v1.2.1

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

func (*VolumeAttachmentStatus) ProtoMessage added in v1.1.0

func (*VolumeAttachmentStatus) ProtoMessage()

func (*VolumeAttachmentStatus) Reset added in v1.1.0

func (m *VolumeAttachmentStatus) Reset()

func (*VolumeAttachmentStatus) Size added in v1.1.0

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

func (*VolumeAttachmentStatus) String added in v1.1.0

func (m *VolumeAttachmentStatus) String() string

func (*VolumeAttachmentStatus) Unmarshal added in v1.1.0

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

func (*VolumeAttachmentStatus) XXX_DiscardUnknown added in v1.2.1

func (m *VolumeAttachmentStatus) XXX_DiscardUnknown()

func (*VolumeAttachmentStatus) XXX_Marshal added in v1.2.1

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

func (*VolumeAttachmentStatus) XXX_Merge added in v1.2.1

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

func (*VolumeAttachmentStatus) XXX_Size added in v1.2.1

func (m *VolumeAttachmentStatus) XXX_Size() int

func (*VolumeAttachmentStatus) XXX_Unmarshal added in v1.2.1

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

type VolumeError added in v1.1.0

type VolumeError struct {
	// Time the error was encountered.
	// +optional
	Time *v1.Time `protobuf:"bytes,1,opt,name=time" json:"time,omitempty"`
	// 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  `protobuf:"bytes,2,opt,name=message" json:"message,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

VolumeError captures an error encountered during a volume operation.

func (*VolumeError) Descriptor added in v1.1.0

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

func (*VolumeError) GetMessage added in v1.1.0

func (m *VolumeError) GetMessage() string

func (*VolumeError) GetTime added in v1.1.0

func (m *VolumeError) GetTime() *v1.Time

func (*VolumeError) Marshal added in v1.1.0

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

func (*VolumeError) MarshalTo added in v1.1.0

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

func (*VolumeError) MarshalToSizedBuffer added in v1.2.1

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

func (*VolumeError) ProtoMessage added in v1.1.0

func (*VolumeError) ProtoMessage()

func (*VolumeError) Reset added in v1.1.0

func (m *VolumeError) Reset()

func (*VolumeError) Size added in v1.1.0

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

func (*VolumeError) String added in v1.1.0

func (m *VolumeError) String() string

func (*VolumeError) Unmarshal added in v1.1.0

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

func (*VolumeError) XXX_DiscardUnknown added in v1.2.1

func (m *VolumeError) XXX_DiscardUnknown()

func (*VolumeError) XXX_Marshal added in v1.2.1

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

func (*VolumeError) XXX_Merge added in v1.2.1

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

func (*VolumeError) XXX_Size added in v1.2.1

func (m *VolumeError) XXX_Size() int

func (*VolumeError) XXX_Unmarshal added in v1.2.1

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

type VolumeNodeResources added in v1.2.2

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 nil, then the supported number of volumes on this node is unbounded.
	// +optional
	Count                *int32   `protobuf:"varint,1,opt,name=count" json:"count,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

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

func (*VolumeNodeResources) Descriptor added in v1.2.2

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

func (*VolumeNodeResources) GetCount added in v1.2.2

func (m *VolumeNodeResources) GetCount() int32

func (*VolumeNodeResources) Marshal added in v1.2.2

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

func (*VolumeNodeResources) MarshalTo added in v1.2.2

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

func (*VolumeNodeResources) MarshalToSizedBuffer added in v1.2.2

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

func (*VolumeNodeResources) ProtoMessage added in v1.2.2

func (*VolumeNodeResources) ProtoMessage()

func (*VolumeNodeResources) Reset added in v1.2.2

func (m *VolumeNodeResources) Reset()

func (*VolumeNodeResources) Size added in v1.2.2

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

func (*VolumeNodeResources) String added in v1.2.2

func (m *VolumeNodeResources) String() string

func (*VolumeNodeResources) Unmarshal added in v1.2.2

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

func (*VolumeNodeResources) XXX_DiscardUnknown added in v1.2.2

func (m *VolumeNodeResources) XXX_DiscardUnknown()

func (*VolumeNodeResources) XXX_Marshal added in v1.2.2

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

func (*VolumeNodeResources) XXX_Merge added in v1.2.2

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

func (*VolumeNodeResources) XXX_Size added in v1.2.2

func (m *VolumeNodeResources) XXX_Size() int

func (*VolumeNodeResources) XXX_Unmarshal added in v1.2.2

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