Improve new CSI API types

This commit is contained in:
saad-ali 2018-08-31 17:20:19 -07:00
parent 247bad23f0
commit 0b9ce0cf93
2 changed files with 44 additions and 18 deletions

View File

@ -14,8 +14,9 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
// Package v1alpha1 provides alpha API for CSI API objects.
// +k8s:deepcopy-gen=package,register // +k8s:deepcopy-gen=package,register
// +groupName=csi.storage.k8s.io // +groupName=csi.storage.k8s.io
// +k8s:openapi-gen=true // +k8s:openapi-gen=true
// Package v1alpha1 provides alpha API for CSI API objects.
package v1alpha1 // import "k8s.io/csi-api/pkg/apis/csi/v1alpha1" package v1alpha1 // import "k8s.io/csi-api/pkg/apis/csi/v1alpha1"

View File

@ -50,29 +50,34 @@ type CSIDriverList struct {
// +optional // +optional
metav1.ListMeta `json:"metadata,omitempty"` metav1.ListMeta `json:"metadata,omitempty"`
// Items is the list of CSIDriver // items is the list of CSIDriver
Items []CSIDriver `json:"items"` Items []CSIDriver `json:"items"`
} }
// CSIDriverSpec is the specification of a CSIDriver. // CSIDriverSpec is the specification of a CSIDriver.
type CSIDriverSpec struct { type CSIDriverSpec struct {
// Indicates this CSI volume driver requires an attach operation (because it // attachRequired indicates this CSI volume driver requires an attach
// implements the CSI ControllerPublishVolume() method), and that Kubernetes // operation (because it implements the CSI ControllerPublishVolume()
// should call attach and wait for any attach operation to complete before // method), and that Kubernetes should call attach and wait for any attach
// proceeding to mounting. // operation to complete before proceeding to mounting.
// If value is not specified, default is false -- meaning attach will not be // If value is not specified, default is false -- meaning attach will not be
// called. // called.
// +optional // +optional
AttachRequired *bool `json:"attachRequired"` AttachRequired *bool `json:"attachRequired"`
// Indicates this CSI volume driver requires additional pod information // If specified, podInfoRequiredOnMount indicates this CSI volume driver
// (like podName, podUID, etc.) during mount operations. // requires additional pod information (like podName, podUID, etc.) during
// If this is set to true, Kubelet will pass pod information as // mount operations.
// If value is not specified, pod information will not be passed on mount.
// If value is set to a valid version, Kubelet will pass pod information as
// VolumeAttributes in the CSI NodePublishVolume() calls. // VolumeAttributes in the CSI NodePublishVolume() calls.
// If value is not specified, default is false -- meaning pod information // Supported versions:
// will not be passed on mount. // Version "v1" will pass the following ValueAttributes
// "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)
// +optional // +optional
PodInfoRequiredOnMount *bool `json:"podInfoRequiredOnMount"` PodInfoOnMountVersion *string `json:"podInfoOnMountVersion"`
} }
// +genclient // +genclient
@ -82,24 +87,42 @@ type CSIDriverSpec struct {
// CSINodeInfo holds information about all CSI drivers installed on a node. // CSINodeInfo holds information about all CSI drivers installed on a node.
type CSINodeInfo struct { type CSINodeInfo struct {
metav1.TypeMeta `json:",inline"` metav1.TypeMeta `json:",inline"`
// ObjectMeta.Name must be node name.
// metadata.name must be the Kubernetes node name.
metav1.ObjectMeta `json:"metadata,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"`
// List of CSI drivers running on the node and their properties. // List of CSI drivers running on the node and their properties.
CSIDrivers []CSIDriverInfo `json:"csiDrivers"` // +patchMergeKey=driver
// +patchStrategy=merge
CSIDrivers []CSIDriverInfo `json:"csiDrivers" patchStrategy:"merge" patchMergeKey:"driver"`
} }
// CSIDriverInfo contains information about one CSI driver installed on a node. // CSIDriverInfo contains information about one CSI driver installed on a node.
type CSIDriverInfo struct { type CSIDriverInfo struct {
// Driver is the name of the CSI driver that this object refers to. // driver 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 // This MUST be the same name returned by the CSI GetPluginName() call for
// that driver. // that driver.
Driver string `json:"driver"` Driver string `json:"driver"`
// ID of the node from the driver point of view. // 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".
NodeID string `json:"nodeID"` NodeID string `json:"nodeID"`
// Topology keys reported by the driver on the node. // 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 that kubelet applies to the coresponding node API
// object as labels.
// 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.
TopologyKeys []string `json:"topologyKeys"` TopologyKeys []string `json:"topologyKeys"`
} }
@ -108,10 +131,12 @@ type CSIDriverInfo struct {
// CSINodeInfoList is a collection of CSINodeInfo objects. // CSINodeInfoList is a collection of CSINodeInfo objects.
type CSINodeInfoList struct { type CSINodeInfoList struct {
metav1.TypeMeta `json:",inline"` metav1.TypeMeta `json:",inline"`
// Standard list metadata // Standard list metadata
// More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata // More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
// +optional // +optional
metav1.ListMeta `json:"metadata,omitempty"` metav1.ListMeta `json:"metadata,omitempty"`
// Items is the list of CSINodeInfo
// items is the list of CSINodeInfo
Items []CSINodeInfo `json:"items"` Items []CSINodeInfo `json:"items"`
} }