Authors:
- Jie Yu <[email protected]> (@jieyu)
- Saad Ali <[email protected]> (@saad-ali)
- James DeFelice <[email protected]> (@jdef)
- [email protected]
The keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" are to be interpreted as described in RFC 2119 (Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, March 1997).
The key words "unspecified", "undefined", and "implementation-defined" are to be interpreted as described in the rationale for the C99 standard.
An implementation is not compliant if it fails to satisfy one or more of the MUST, REQUIRED, or SHALL requirements for the protocols it implements. An implementation is compliant if it satisfies all the MUST, REQUIRED, and SHALL requirements for the protocols it implements.
Term | Definition |
---|---|
Volume | A unit of storage that will be made available inside of a CO-managed container, via the CSI. |
Block Volume | A volume that will appear as a block device inside the container. |
Mounted Volume | A volume that will be mounted using the specified file system and appear as a directory inside the container. |
CO | Container Orchestration system, communicates with Plugins using CSI service RPCs. |
SP | Storage Provider, the vendor of a CSI plugin implementation. |
RPC | Remote Procedure Call. |
Node | A host where the user workload will be running, uniquely identifiable from the perspective of a Plugin by a NodeID . |
Plugin | Aka “plugin implementation”, a gRPC endpoint that implements the CSI Services. |
Plugin Supervisor | Process that governs the lifecycle of a Plugin, MAY be the CO. |
To define an industry standard “Container Storage Interface” (CSI) that will enable storage vendors (SP) to develop a plugin once and have it work across a number of container orchestration (CO) systems.
The Container Storage Interface (CSI) will
- Enable SP authors to write one CSI compliant Plugin that “just works” across all COs that implement CSI.
- Define API (RPCs) that enable:
- Dynamic provisioning and deprovisioning of a volume.
- Attaching or detaching a volume from a node.
- Mounting/unmounting a volume from a node.
- Consumption of both block and mountable volumes.
- Local storage providers (e.g., device mapper, lvm).
- Define plugin protocol RECOMMENDATIONS.
- Describe a process by which a Supervisor configures a Plugin.
- Container deployment considerations (
CAP_SYS_ADMIN
, mount namespace, etc.).
The Container Storage Interface (CSI) explicitly will not define, provide, or dictate in v0.1:
- Specific mechanisms by which a Plugin Supervisor manages the lifecycle of a Plugin, including:
- How to maintain state (e.g. what is attached, mounted, etc.).
- How to deploy, install, upgrade, uninstall, monitor, or respawn (in case of unexpected termination) Plugins.
- A first class message structure/field to represent "grades of storage" (aka "storage class").
- Protocol-level authentication and authorization.
- Packaging of a Plugin.
- POSIX compliance: CSI provides no guarantee that volumes provided are POSIX compliant filesystems. Compliance is determined by the Plugin implementation (and any backend storage system(s) upon which it depends). CSI SHALL NOT obstruct a Plugin Supervisor or CO from interacting with Plugin-managed volumes in a POSIX-compliant manner.
This specification defines an interface along with the minimum operational and packaging recommendations for a storage provider (SP) to implement a CSI compatible plugin. The interface declares the RPCs that a plugin must expose: this is the primary focus of the CSI specification. Any operational and packaging recommendations offer additional guidance to promote cross-CO compatibility.
The primary focus of this specification is on the protocol between a CO and a Plugin. It SHOULD be possible to ship cross-CO compatible Plugins for a variety of deployment architectures. A CO should be equipped to handle both centralized and headless plugins, as well as split-component and unified plugins. Several of these possibilities are illustrated in the following figures.
CO "Master" Host
+-------------------------------------------+
| |
| +------------+ +------------+ |
| | CO | gRPC | Controller | |
| | +-----------> Plugin | |
| +------------+ +------------+ |
| |
+-------------------------------------------+
CO "Node" Host(s)
+-------------------------------------------+
| |
| +------------+ +------------+ |
| | CO | gRPC | Node | |
| | +-----------> Plugin | |
| +------------+ +------------+ |
| |
+-------------------------------------------+
Figure 1: The Plugin runs on all nodes in the cluster: a centralized
Controller Plugin is available on the CO master host and the Node
Plugin is available on all of the CO Nodes.
CO "Node" Host(s)
+-------------------------------------------+
| |
| +------------+ +------------+ |
| | CO | gRPC | Controller | |
| | +--+--------> Plugin | |
| +------------+ | +------------+ |
| | |
| | |
| | +------------+ |
| | | Node | |
| +--------> Plugin | |
| +------------+ |
| |
+-------------------------------------------+
Figure 2: Headless Plugin deployment, only the CO Node hosts run
Plugins. Separate, split-component Plugins supply the Controller
Service and the Node Service respectively.
CO "Node" Host(s)
+-------------------------------------------+
| |
| +------------+ +------------+ |
| | CO | gRPC | Controller | |
| | +-----------> Node | |
| +------------+ | Plugin | |
| +------------+ |
| |
+-------------------------------------------+
Figure 3: Headless Plugin deployment, only the CO Node hosts run
Plugins. A unified Plugin component supplies both the Controller
Service and Node Service.
CreateVolume +------------+ DeleteVolume
+------------->| CREATED +--------------+
| +---+----+---+ |
| Controller | | Controller v
+++ Publish | | Unpublish +++
|X| Volume | | Volume | |
+-+ +---v----+---+ +-+
| NODE_READY |
+---+----^---+
Node | | Node
Publish | | Unpublish
Volume | | Volume
+---v----+---+
| PUBLISHED |
+------------+
Figure 4: The lifecycle of a dynamically provisioned volume, from
creation to destruction.
Controller Controller
Publish Unpublish
Volume +------------+ Volume
+------------->+ NODE_READY +--------------+
| +---+----^---+ |
| Node | | Node v
+++ Publish | | Unpublish +++
|X| <-+ Volume | | Volume | |
+++ | +---v----+---+ +-+
| | | PUBLISHED |
| | +------------+
+----+
Validate
Volume
Capabilities
Figure 5: The lifecycle of a pre-provisioned volume that requires
controller to publish to a node (`ControllerPublishVolume`) prior to
publishing on the node (`NodePublishVolume`).
+-+ +-+
|X| | |
+++ +^+
| |
Node | | Node
Publish | | Unpublish
Volume | | Volume
+---v----+---+
| PUBLISHED |
+------------+
Figure 6: Plugins may forego other lifecycle steps by contraindicating
them via the capabilities API. Interactions with the volumes of such
plugins is reduced to `NodePublishVolume` and `NodeUnpublishVolume`
calls.
The above diagrams illustrate a general expectation with respect to how a CO MAY manage the lifecycle of a volume via the API presented in this specification.
Plugins should expose all RPCs for an interface: Controller plugins should implement all RPCs for the Controller
service.
Unsupported RPCs should return an appropriate error code that indicates such (e.g. CALL_NOT_IMPLEMENTED
).
The full list of plugin capabilities is documented in the ControllerGetCapabilities
and NodeGetCapabilities
RPCs.
This section describes the interface between COs and Plugins.
A CO interacts with an Plugin through RPCs. Each SP MUST provide:
- Node Plugin: A gRPC endpoint serving CSI RPCs that MUST be run on the Node whereupon an SP-provisioned volume will be published.
- Controller Plugin: A gRPC endpoint serving CSI RPCs that MAY be run anywhere.
- In some circumstances a single gRPC endpoint MAY serve all CSI RPCs (see Figure 3 in Architecture).
syntax = "proto3";
package csi;
There are three sets of RPCs:
- Identity Service: Both the Node Plugin and the Controller Plugin MUST implement this sets of RPCs.
- Controller Service: The Controller Plugin MUST implement this sets of RPCs.
- Node Service: The Node Plugin MUST implement this sets of RPCs.
service Identity {
rpc GetSupportedVersions (GetSupportedVersionsRequest)
returns (GetSupportedVersionsResponse) {}
rpc GetPluginInfo(GetPluginInfoRequest)
returns (GetPluginInfoResponse) {}
}
service Controller {
rpc CreateVolume (CreateVolumeRequest)
returns (CreateVolumeResponse) {}
rpc DeleteVolume (DeleteVolumeRequest)
returns (DeleteVolumeResponse) {}
rpc ControllerPublishVolume (ControllerPublishVolumeRequest)
returns (ControllerPublishVolumeResponse) {}
rpc ControllerUnpublishVolume (ControllerUnpublishVolumeRequest)
returns (ControllerUnpublishVolumeResponse) {}
rpc ValidateVolumeCapabilities (ValidateVolumeCapabilitiesRequest)
returns (ValidateVolumeCapabilitiesResponse) {}
rpc ListVolumes (ListVolumesRequest)
returns (ListVolumesResponse) {}
rpc GetCapacity (GetCapacityRequest)
returns (GetCapacityResponse) {}
rpc ControllerGetCapabilities (ControllerGetCapabilitiesRequest)
returns (ControllerGetCapabilitiesResponse) {}
}
service Node {
rpc NodePublishVolume (NodePublishVolumeRequest)
returns (NodePublishVolumeResponse) {}
rpc NodeUnpublishVolume (NodeUnpublishVolumeRequest)
returns (NodeUnpublishVolumeResponse) {}
rpc GetNodeID (GetNodeIDRequest)
returns (GetNodeIDResponse) {}
rpc ProbeNode (ProbeNodeRequest)
returns (ProbeNodeResponse) {}
rpc NodeGetCapabilities (NodeGetCapabilitiesRequest)
returns (NodeGetCapabilitiesResponse) {}
}
In general the Cluster Orchestrator (CO) is responsible for ensuring that there is no more than one call “in-flight” per volume at a given time.
However, in some circumstances, the CO may lose state (for example when the CO crashes and restarts), and may issue multiple calls simultaneously for the same volume.
The plugin should handle this as gracefully as possible.
The error code OPERATION_PENDING_FOR_VOLUME
may be returned by the plugin in this case (see general error code section for details).
A Plugin SHALL reply with a list of supported CSI versions.
The initial version of the CSI specification is 0.1.0 (in major.minor.patch format).
A CO MAY execute plugin RPCs in the manner prescribed by any such supported CSI version.
The versions returned by this call are orthogonal to any vendor-specific version metadata (see vendor_version
in GetPluginInfoResponse
).
NOTE: Changes to this RPC should be approached very conservatively since the request/response protobufs here are critical for proper client-server version negotiation. Future changes to this RPC MUST guarantee backwards compatibility.
message GetSupportedVersionsRequest {
}
message GetSupportedVersionsResponse {
message Result {
// All the CSI versions that the Plugin supports. This field is
// REQUIRED.
repeated Version supported_versions = 1;
}
// One of the following fields MUST be specified.
oneof reply {
Result result = 1;
Error error = 2;
}
}
// Specifies a version in Semantic Version 2.0 format.
// (http://semver.org/spec/v2.0.0.html)
message Version {
uint32 major = 1; // This field is REQUIRED.
uint32 minor = 2; // This field is REQUIRED.
uint32 patch = 3; // This field is REQUIRED.
}
message GetPluginInfoRequest {
// The API version assumed by the CO. This is a REQUIRED field.
Version version = 1;
}
message GetPluginInfoResponse {
message Result {
// This field is REQUIRED.
string name = 1;
// This field is REQUIRED. Value of this field is opaque to the CO.
string vendor_version = 2;
// This field is OPTIONAL. Values are opaque to the CO.
map<string, string> manifest = 3;
}
// One of the following fields MUST be specified.
oneof reply {
Result result = 1;
Error error = 2;
}
}
A Controller Plugin MUST implement this RPC call if it has CREATE_DELETE_VOLUME
controller capability.
This RPC will be called by the CO to provision a new volume on behalf of a user (to be consumed as either a block device or a mounted filesystem).
This operation MUST be idempotent.
message CreateVolumeRequest {
// The API version assumed by the CO. This field is REQUIRED.
Version version = 1;
// The suggested name for the storage space. This field is REQUIRED.
// It serves two purposes:
// 1) Idempotency - This name is generated by the CO to achieve
// idempotency. If `CreateVolume` fails, the volume may or may not
// be provisioned. In this case, the CO may call `CreateVolume`
// again, with the same name, to ensure the volume exists. The
// Plugin should ensure that multiple `CreateVolume` calls for the
// same name do not result in more than one piece of storage
// provisioned corresponding to that name. If a Plugin is unable to
// enforce idempotency, the CO’s error recovery logic could result
// in multiple (unused) volumes being provisioned.
// 2) Suggested name - Some storage systems allow callers to specify
// an identifier by which to refer to the newly provisioned
// storage. If a storage system supports this, it can optionally
// use this name as the identifier for the new volume.
string name = 2;
// This field is OPTIONAL. This allows the CO to specify the capacity
// requirement of the volume to be provisioned. If not specified, the
// Plugin MAY choose an implementation-defined capacity range.
CapacityRange capacity_range = 3;
// The capabilities that the provisioned volume MUST have: the Plugin
// MUST provision a volume that could satisfy ALL of the
// capabilities specified in this list. The Plugin MUST assume that
// the CO MAY use the provisioned volume later with ANY of the
// capabilities specified in this list. This also enables the CO to do
// early validation: if ANY of the specified volume capabilities are
// not supported by the Plugin, the call SHALL fail. This field is
// REQUIRED.
repeated VolumeCapability volume_capabilities = 4;
// Plugin specific parameters passed in as opaque key-value pairs.
// This field is OPTIONAL. The Plugin is responsible for parsing and
// validating these parameters. COs will treat these as opaque.
map<string, string> parameters = 5;
}
message CreateVolumeResponse {
message Result {
// Contains all attributes of the newly created volume that are
// relevant to the CO along with information required by the Plugin
// to uniquely identifying the volume. This field is REQUIRED.
VolumeInfo volume_info = 1;
}
// One of the following fields MUST be specified.
oneof reply {
Result result = 1;
Error error = 2;
}
}
// Specify a capability of a volume.
message VolumeCapability {
message BlockVolume {
// Intentionally empty, for now.
}
message MountVolume {
// The filesystem type. This field is OPTIONAL.
string fs_type = 1;
// The mount options that can be used for the volume. This field is
// OPTIONAL. `mount_flags` MAY contain sensitive information.
// Therefore, the CO and the Plugin MUST NOT leak this information
// to untrusted entities.
repeated string mount_flags = 2;
}
// One of the following fields MUST be specified.
oneof value {
BlockVolume block = 1;
MountVolume mount = 2;
}
}
// The capacity of the storage space in bytes. To specify an exact size,
// `required_bytes` and `limit_bytes` can be set to the same value. At
// least one of the these fields MUST be specified.
message CapacityRange {
// Volume must be at least this big.
uint64 required_bytes = 1;
// Volume must not be bigger than this.
uint64 limit_bytes = 2;
}
// The information about a provisioned volume.
message VolumeInfo {
// The capacity of the volume in bytes. This field is OPTIONAL. If not
// set, it indicates that the capacity of the volume is unknown (e.g.,
// NFS share). If set, it MUST be non-zero.
uint64 capacity_bytes = 1;
// Contains information about how the volume can be accessed. This
// field is REQUIRED.
AccessMode access_mode = 2;
// Contains identity information for the created volume. This field is
// REQUIRED. The identity information will be used by the CO in
// subsequent calls to refer to the provisioned volume.
VolumeID id = 4;
// Metadata of the created volume. This field is OPTIONAL. If set, the
// CO SHALL pass this information along with the `id` to subsequent
// calls.
VolumeMetadata metadata = 5;
}
// Specify how a volume can be accessed.
message AccessMode {
enum Mode {
UNKNOWN = 0;
// Can be published as read/write at one node at a time.
SINGLE_NODE_WRITER = 1;
// Can be published as readonly at one node at a time.
SINGLE_NODE_READER_ONLY = 2;
// Can be published as readonly at multiple nodes simultaneously.
MULTI_NODE_READER_ONLY = 3;
// Can be published at multiple nodes simultaneously. Only one of
// the node can be used as read/write. The rest will be readonly.
MULTI_NODE_SINGLE_WRITER = 4;
// Can be published as read/write at multiple nodes simultaneously.
MULTI_NODE_MULTI_WRITER = 5;
}
// This field is REQUIRED.
Mode mode = 1;
}
// The identity of the volume.
message VolumeID {
// The identity of the provisioned volume specified by the Plugin in
// the form of key-value pairs. This field is REQUIRED. Given this
// information will be passed around by the CO, it is RECOMMENDED that
// each Plugin keeps this information as small as possible.
map<string, string> values = 1;
}
// The metadata information about the volume.
message VolumeMetadata {
// The metadata information about the provisioned volume specified by
// the Plugin in the form of key-value pairs. This field is OPTIONAL.
// This field MAY contain sensitive information. Therefore, the CO
// MUST NOT leak this information to untrusted entities. Given this
// information will be passed around by the CO, it is RECOMMENDED that
// each Plugin keeps this information as small as possible.
map<string, string> values = 1;
}
A Controller Plugin MUST implement this RPC call if it has CREATE_DELETE_VOLUME
capability.
This RPC will be called by the CO to deprovision a volume.
If successful, the storage space associated with the volume MUST be released and all the data in the volume SHALL NOT be accessible anymore.
This operation MUST be idempotent. This operation SHOULD be best effort in the sense that if the Plugin is certain that the volume as well as the artifacts associated with the volume do not exist anymore, it SHOULD return a success.
message DeleteVolumeRequest {
// The API version assumed by the CO. This field is REQUIRED.
Version version = 1;
// The ID of the volume to be deprovisioned. This field is REQUIRED.
VolumeID volume_id = 2;
// The metadata of the volume to be deprovisioned. This field is
// OPTIONAL.
VolumeMetadata volume_metadata = 3;
}
message DeleteVolumeResponse {
message Result {}
// One of the following fields MUST be specified.
oneof reply {
Result result = 1;
Error error = 2;
}
}
A Controller Plugin MUST implement this RPC call if it has PUBLISH_UNPUBLISH_VOLUME
controller capability.
This RPC will be called by the CO when it wants to place a workload that uses the volume onto a node.
The Plugin SHOULD perform the work that is necessary for making the volume available on the given node.
The Plugin MUST NOT assume that this RPC will be executed on the node where the volume will be used.
This operation MUST be idempotent.
If the operation failed or the CO does not know if the operation has failed or not, it MAY choose to call ControllerPublishVolume
again or choose to call ControllerUnpublishVolume
.
The CO MAY call this RPC for publishing a volume to multiple nodes if multiple_nodes
is set to true in AccessMode
for the volume.
message ControllerPublishVolumeRequest {
// The API version assumed by the CO. This field is REQUIRED.
Version version = 1;
// The ID of the volume to be used on a node. This field is REQUIRED.
VolumeID volume_id = 2;
// The metadata of the volume to be used on a node. This field is
// OPTIONAL.
VolumeMetadata volume_metadata = 3;
// The ID of the node. This field is OPTIONAL. The CO SHALL set (or
// clear) this field to match the `NodeID` returned by `GetNodeID`.
// `GetNodeID` is allowed to omit `NodeID` from a successful `Result`;
// in such cases the CO SHALL NOT specify this field.
NodeID node_id = 4;
// Whether to publish the volume in readonly mode. This field is
// REQUIRED.
bool readonly = 5;
}
message ControllerPublishVolumeResponse {
message Result {
// The SP specific information that will be passed to the Plugin in
// the subsequent `NodePublishVolume` call for the given volume.
// This information is opaque to the CO. This field is OPTIONAL.
PublishVolumeInfo publish_volume_info = 1;
}
// One of the following fields MUST be specified.
oneof reply {
Result result = 1;
Error error = 2;
}
}
message NodeID {
// Information about a node in the form of key-value pairs. This
// information is opaque to the CO. Given this information will be
// passed around by the CO, it is RECOMMENDED that each Plugin keeps
// this information as small as possible. This field is REQUIRED.
map<string, string> values = 1;
}
message PublishVolumeInfo {
// Information returned by the Plugin in `ControllerPublishVolume`
// call. It is in the form of key-value pairs, and is opaque to the
// CO. Given this information will be passed around by the CO, it is
// RECOMMENDED that each Plugin keeps this information as small as
// possible. This field is OPTIONAL.
map<string, string> values = 1;
}
Controller Plugin MUST implement this RPC call if it has PUBLISH_UNPUBLISH_VOLUME
controller capability.
This RPC is a reverse operation of ControllerPublishVolume
.
It MUST be called after NodeUnpublishVolume
on the volume is called and succeeds.
The Plugin SHOULD perform the work that is necessary for making the volume ready to be consumed by a different node.
The Plugin MUST NOT assume that this RPC will be executed on the node where the volume was previously used.
This RPC is typically called by the CO when the workload using the volume is being moved to a different node, or all the workload using the volume on a node has finished.
This operation MUST be idempotent.
If this operation failed, or the CO does not know if the operation failed or not, it can choose to call ControllerUnpublishVolume
again.
message ControllerUnpublishVolumeRequest {
// The API version assumed by the CO. This field is REQUIRED.
Version version = 1;
// The ID of the volume. This field is REQUIRED.
VolumeID volume_id = 2;
// The metadata of the volume. This field is OPTIONAL.
VolumeMetadata volume_metadata = 3;
// The ID of the node. This field is OPTIONAL. The CO SHALL set (or
// clear) this field to match the `NodeID` returned by `GetNodeID`.
// `GetNodeID` is allowed to omit `NodeID` from a successful `Result`;
// in such cases the CO SHALL NOT specify this field.
//
// If `GetNodeID` does not omit `NodeID` from a successful `Result`,
// the CO MAY omit this field as well, indicating that it does not
// know which node the volume was previously used. The Plugin SHOULD
// return an Error if this is not supported.
NodeID node_id = 4;
}
message ControllerUnpublishVolumeResponse {
message Result {}
// One of the following fields MUST be specified.
oneof reply {
Result result = 1;
Error error = 2;
}
}
A Controller Plugin MUST implement this RPC call.
This RPC will be called by the CO to check if a pre-provisioned volume has all the capabilities that the CO wants.
This RPC call SHALL return supported
only if all the volume capabilities specified in the request are supported.
This operation MUST be idempotent.
message ValidateVolumeCapabilitiesRequest {
// The API version assumed by the CO. This is a REQUIRED field.
Version version = 1;
// The information about the volume to check. This is a REQUIRED
// field.
VolumeInfo volume_info = 2;
// The capabilities that the CO wants to check for the volume. This
// call SHALL return “supported” only if all the volume capabilities
// specified below are supported. This field is REQUIRED.
repeated VolumeCapability volume_capabilities = 3;
}
message ValidateVolumeCapabilitiesResponse {
message Result {
// True if the Plugin supports the specified capabilities for the
// given volume. This field is REQUIRED.
bool supported = 1;
// Message to the CO if `supported` above is false. This field is
// OPTIONAL.
string message = 2;
}
// One of the following fields MUST be specified.
oneof reply {
Result result = 1;
Error error = 2;
}
}
A Controller Plugin MUST implement this RPC call if it has LIST_VOLUMES
capability.
The Plugin SHALL return the information about all the volumes that it knows about.
message ListVolumesRequest {
// The API version assumed by the CO. This field is REQUIRED.
Version version = 1;
// If specified, the Plugin MUST NOT return more entries than this
// number in the response. If the actual number of entries is more
// than this number, the Plugin MUST set `next_token` in the response
// which can be used to get the next page of entries in the subsequent
// `ListVolumes` call. This field is OPTIONAL. If not specified, it
// means there is no restriction on the number of entries that can be
// returned.
uint32 max_entries = 2;
// A token to specify where to start paginating. Set this field to
// `next_token` returned by a previous `ListVolumes` call to get the
// next page of entries. This field is OPTIONAL.
string starting_token = 3;
}
message ListVolumesResponse {
message Result {
message Entry {
VolumeInfo volume_info = 1;
}
repeated Entry entries = 1;
// This token allows you to get the next page of entries for
// `ListVolumes` request. If the number of entries is larger than
// `max_entries`, use the `next_token` as a value for the
// `starting_token` field in the next `ListVolumes` request. This
// field is OPTIONAL.
string next_token = 2;
}
// One of the following fields MUST be specified.
oneof reply {
Result result = 1;
Error error = 2;
}
}
A Controller Plugin MUST implement this RPC call if it has GET_CAPACITY
controller capability.
The RPC allows the CO to query the capacity of the storage pool from which the controller provisions volumes.
message GetCapacityRequest {
// The API version assumed by the CO. This is a REQUIRED field.
Version version = 1;
}
message GetCapacityResponse {
message Result {
// The total capacity (available + used) of the storage pool from
// which the controller provisions volumes. This is a REQUIRED
// field.
uint64 total_capacity = 1;
}
// One of the following fields MUST be specified.
oneof reply {
Result result = 1;
Error error = 2;
}
}
A Controller Plugin MUST implement this RPC call. This RPC allows the CO to check the supported capabilities of controller service provided by the Plugin.
message ControllerGetCapabilitiesRequest {
// The API version assumed by the CO. This is a REQUIRED field.
Version version = 1;
}
message ControllerGetCapabilitiesResponse {
message Result {
// All the capabilities that the controller service supports. This
// field is OPTIONAL.
repeated ControllerServiceCapability capabilities = 2;
}
// One of the following fields MUST be specified.
oneof reply {
Result result = 1;
Error error = 2;
}
}
// Specifies a capability of the controller service.
message ControllerServiceCapability {
message RPC {
enum Type {
UNKNOWN = 0;
CREATE_DELETE_VOLUME = 1;
PUBLISH_UNPUBLISH_VOLUME = 2;
LIST_VOLUMES = 3;
GET_CAPACITY = 4;
}
Type type = 1;
}
oneof type {
// RPC that the controller supports.
RPC rpc = 1;
// Volume capability the Controller Plugin supports. An SP SHOULD
// avoid setting different volume capability for Controller and Node
// Plugins if possible. If this happens during the upgrade of the
// Plugins, the behavior is UNDEFINED.
VolumeCapability volume_capability = 2;
}
}
A Node Plugin MUST implement this RPC call.
This RPC is typically called by the CO when it wants to place a workload that wants to use the volume on a node.
The Plugin SHALL assume that this RPC will be executed on the node where the volume will be used.
If the corresponding Controller Plugin has PUBLISH_UNPUBLISH_VOLUME
controller capability, the CO MUST guarantee that this RPC is called after ControllerPublishVolume
is
called for the given volume on the given node and returns a success.
This operation MUST be idempotent.
If this RPC failed, or the CO does not know if it failed or not, it MAY choose to call NodePublishVolume
again, or choose to call NodeUnpublishVolume
.
message NodePublishVolumeRequest {
// The API version assumed by the CO. This is a REQUIRED field.
Version version = 1;
// The ID of the volume to publish. This field is REQUIRED.
VolumeID volume_id = 2;
// The metadata of the volume to publish. This field is OPTIONAL.
VolumeMetadata volume_metadata = 3;
// The CO SHALL set this field to the value returned by
// `ControllerPublishVolume` if the corresponding Controller Plugin
// has `PUBLISH_UNPUBLISH_VOLUME` controller capability, and SHALL be
// left unset if the corresponding Controller Plugin does not have
// this capability. This is an OPTIONAL field.
PublishVolumeInfo publish_volume_info = 4;
// The path to which the volume will be published. It MUST be an
// absolute path in the root filesystem of the process serving this
// request. This is a REQUIRED field.
string target_path = 5;
// The capability of the volume to be published. This is a REQUIRED
// field.
VolumeCapability volume_capability = 6;
// Whether to publish the volume in readonly mode. This field is
// REQUIRED.
bool readonly = 7;
}
message NodePublishVolumeResponse {
message Result {}
// One of the following fields MUST be specified.
oneof reply {
Result result = 1;
Error error = 2;
}
}
A Node Plugin MUST implement this RPC call.
This RPC is a reverse operation of NodePublishVolume
.
If the corresponding Controller Plugin has PUBLISH_UNPUBLISH_VOLUME
controller capability, the CO MUST guarantee that this RPC is called before ControllerUnpublishVolume
is called for the given node and the given volume.
The Plugin SHALL assume that this RPC will be executed on the node where the volume is being used.
This RPC is typically called by the CO when the workload using the volume is being moved to a different node, or all the workload using the volume on a node has finished.
This operation MUST be idempotent.
If this RPC failed, or the CO does not know if it failed or not, it can choose to call NodeUnpublishVolume
again.
message NodeUnpublishVolumeRequest {
// The API version assumed by the CO. This is a REQUIRED field.
Version version = 1;
// The ID of the volume. This field is REQUIRED.
VolumeID volume_id = 2;
// The metadata of the volume. This field is OPTIONAL.
VolumeMetadata volume_metadata = 3;
// The path at which the volume was published. It MUST be an absolute
// path in the root filesystem of the process serving this request.
// This is a REQUIRED field.
string target_path = 4;
}
message NodeUnpublishVolumeResponse {
message Result {}
// One of the following fields MUST be specified.
oneof reply {
Result result = 1;
Error error = 2;
}
}
A Node Plugin MUST implement this RPC call.
The Plugin SHALL assume that this RPC will be executed on the node where the volume will be used.
The CO SHOULD call this RPC for the node at which it wants to place the workload.
The result of this call will be used by CO in ControllerPublishVolume
.
message GetNodeIDRequest {
// The API version assumed by the CO. This is a REQUIRED field.
Version version = 1;
}
message GetNodeIDResponse {
message Result {
// The ID of the node which SHALL be used by CO in
// `ControllerPublishVolume`. This is an OPTIONAL field. If unset,
// the CO SHALL leave the `node_id` field unset in
// `ControllerPublishVolume`.
NodeID node_id = 1;
}
// One of the following fields MUST be specified.
oneof reply {
Result result = 1;
Error error = 2;
}
}
A Node Plugin MUST implement this RPC call. The Plugin SHALL assume that this RPC will be executed on the node where the volume will be used. The CO SHOULD call this RPC for the node at which it wants to place the workload. This RPC allows the CO to probe the readiness of the Plugin on the node where the volumes will be used. The Plugin SHOULD verify if it has everything it needs (binaries, kernel module, drivers, etc.) to run on that node, and return a success if the validation succeeds. The CO MAY use this RPC to probe which machines can support specific Plugins and schedule workloads accordingly.
message ProbeNodeRequest {
// The API version assumed by the CO. This is a REQUIRED field.
Version version = 1;
}
message ProbeNodeResponse {
message Result {}
// One of the following fields MUST be specified.
oneof reply {
Result result = 1;
Error error = 2;
}
}
A Node Plugin MUST implement this RPC call. This RPC allows the CO to check the supported capabilities of node service provided by the Plugin.
message NodeGetCapabilitiesRequest {
// The API version assumed by the CO. This is a REQUIRED field.
Version version = 1;
}
message NodeGetCapabilitiesResponse {
message Result {
// All the capabilities that the node service supports. This field
// is OPTIONAL.
repeated NodeServiceCapability capabilities = 2;
}
// One of the following fields MUST be specified.
oneof reply {
Result result = 1;
Error error = 2;
}
}
// Specifies a capability of the node service.
message NodeServiceCapability {
message RPC {
enum Type {
UNKNOWN = 0;
}
Type type = 1;
}
oneof type {
// RPC that the controller supports.
RPC rpc = 1;
// Volume capability the Node Plugin supports. An SP SHOULD avoid
// setting different volume capability for Controller and Node
// Plugins if possible. If this happens during the upgrade of the
// Plugins, the behavior is UNDEFINED.
VolumeCapability volume_capability = 2;
}
}
Standard error types that Plugins MUST reply with. Allows CO to implement smarter error handling and fault resolution.
message Error {
// General Error that MAY be returned by any RPC.
message GeneralError {
enum GeneralErrorCode {
// Default value for backwards compatibility. SHOULD NOT be
// returned by Plugins. However, if a Plugin returns a
// `GeneralErrorCode` code that an older CSI client is not aware
// of, the client will see this code (the default fallback).
//
// Recovery behavior: Caller SHOULD consider updating CSI client
// to match Plugin CSI version.
UNKNOWN = 0;
// Indicates that an undefined error occurred. More human-readable
// information MAY be provided in the `error_description` field.
// The `caller_must_not_retry` field MUST be set appropriately by
// the Plugin to provide callers expected recovery behavior.
//
// Recovery behavior: Caller MAY retry (with exponential backoff),
// if `caller_must_not_retry` is set to false. Otherwise, the
// caller MUST not reissue the same request.
UNDEFINED = 1;
// Indicates that the version specified in the request is not
// supported by the Plugin. The `caller_must_not_retry` field MUST
// be set to true.
//
// Recovery behavior: Caller MUST NOT retry; caller SHOULD call
// `GetSupportedVersions` to discover which CSI versions the Plugin
// supports.
UNSUPPORTED_REQUEST_VERSION = 2;
// Indicates that a required field is missing from the request.
// More human-readable information MAY be provided in the
// `error_description` field. The `caller_must_not_retry` field
// MUST be set to true.
//
// Recovery behavior: Caller MUST fix the request by adding the
// missing required field before retrying.
MISSING_REQUIRED_FIELD = 3;
}
// Machine parsable error code.
GeneralErrorCode error_code = 1;
// When set to true, `caller_must_not_retry` indicates that the
// caller MUST not retry the same call again. This MAY be because
// the call is deemed invalid by the Plugin and no amount of retries
// will cause it to succeed. If this value is false, the caller MAY
// reissue the same call, but SHOULD implement exponential backoff
// on retires.
bool caller_must_not_retry = 2;
// Human readable description of error, possibly with additional
// information. This string MAY be surfaced by CO to end users.
string error_description = 3;
}
// `CreateVolume` specific error.
message CreateVolumeError {
enum CreateVolumeErrorCode {
// Default value for backwards compatibility. SHOULD NOT be
// returned by Plugins. However, if a Plugin returns a
// `CreateVolumeErrorCode` code that an older CSI client is not
// aware of, the client will see this code (the default fallback).
//
// Recovery behavior: Caller SHOULD consider updating CSI client
// to match Plugin CSI version.
UNKNOWN = 0;
// Indicates that the call is either not implemented by the Plugin
// or disabled in the Plugin’s current mode of operation.
//
// Recovery behavior: Caller MUST not retry; caller MAY call
// `ControllerGetCapabilities` or `NodeGetCapabilities` to discover
// Plugin capabilities.
CALL_NOT_IMPLEMENTED = 1;
// Indicates that there is a already an operation pending for the
// specified volume. In general the Cluster Orchestrator (CO) is
// responsible for ensuring that there is no more than one call
// “in-flight” per volume at a given time. However, in some
// circumstances, the CO MAY lose state (for example when the CO
// crashes and restarts), and MAY issue multiple calls
// simultaneously for the same volume. The Plugin, SHOULD handle
// this as gracefully as possible, and MAY return this error code
// to reject secondary calls.
//
// Recovery behavior: Caller SHOULD ensure that there are no other
// calls pending for the specified volume, and then retry with
// exponential back off.
OPERATION_PENDING_FOR_VOLUME = 2;
// Indicates that the specified volume name is not allowed by the
// Plugin. More human-readable information MAY be provided in the
// `error_description` field.
//
// Recovery behavior: Caller MUST fix the name before retrying.
INVALID_VOLUME_NAME = 3;
// Indicates that the capacity range is not allowed by the Plugin.
// More human-readable information MAY be provided in the
// `error_description` field.
//
// Recovery behavior: Caller MUST fix the capacity range before //
// retrying.
UNSUPPORTED_CAPACITY_RANGE = 4;
// Indicates that a volume corresponding to the specified volume
// name already exists.
//
// Recovery behavior: Caller MAY assume the `CreateVolume`
// call succeeded.
VOLUME_ALREADY_EXISTS = 5;
// Indicates that a key in the opaque key/value parameters field
// is not supported by the Plugin. More human-readable information
// MAY be provided in the `error_description` field. This MAY
// occur, for example, due to caller error, Plugin version skew, etc.
//
// Recovery behavior: Caller MUST remove the unsupported key/value
// pair from the list of parameters before retrying.
UNSUPPORTED_PARAMETER_KEY = 6;
// Indicates that a value in one of the opaque key/value pairs
// parameter contains invalid data. More human-readable
// information (such as the corresponding key) MAY be provided in
// the `error_description` field.
//
// Recovery behavior: Caller MUST fix the invalid value before
// retrying.
INVALID_PARAMETER_VALUE = 7;
}
// Machine parsable error code.
CreateVolumeErrorCode error_code = 1;
// Human readable description of error, possibly with additional
// information. This string maybe surfaced by CO to end users.
string error_description = 2;
}
// `DeleteVolume` specific error.
message DeleteVolumeError {
enum DeleteVolumeErrorCode {
// Default value for backwards compatibility. SHOULD NOT be
// returned by Plugins. However, if a Plugin returns a
// `DeleteVolumeErrorCode` code that an older CSI client is not
// aware of, the client will see this code (the default fallback).
//
// Recovery behavior: Caller SHOULD consider updating CSI client
// to match Plugin CSI version.
UNKNOWN = 0;
// Indicates that the call is either not implemented by the Plugin
// or disabled in the Plugin’s current mode of operation.
//
// Recovery behavior: Caller MUST not retry; caller MAY call
// `ControllerGetCapabilities` or `NodeGetCapabilities` to
// discover Plugin capabilities.
CALL_NOT_IMPLEMENTED = 1;
// Indicates that there is a already an operation pending for the
// specified volume. In general the Cluster Orchestrator (CO) is
// responsible for ensuring that there is no more than one call
// “in-flight” per volume at a given time. However, in some
// circumstances, the CO MAY lose state (for example when the CO
// crashes and restarts), and MAY issue multiple calls
// simultaneously for the same volume. The Plugin, SHOULD handle
// this as gracefully as possible, and MAY return this error code
// to reject secondary calls.
//
// Recovery behavior: Caller SHOULD ensure that there are no other
// calls pending for the specified volume, and then retry with
// exponential back off.
OPERATION_PENDING_FOR_VOLUME = 2;
// Indicates that the specified `VolumeID` is not allowed or
// understood by the Plugin. More human-readable information MAY
// be provided in the `error_description` field.
//
// Recovery behavior: Caller MUST fix the `VolumeID` before
// retrying.
INVALID_VOLUME_ID = 3;
// Indicates that the specified `VolumeMetadata` is not allowed or
// understood by the Plugin. More human-readable information MAY
// be provided in the `error_description` field.
//
// Recovery behavior: Caller MUST fix the `VolumeMetadata` before
// retrying.
INVALID_VOLUME_METADATA = 4;
// Indicates that a volume corresponding to the specified
// `VolumeID` does not exist.
//
// Recovery behavior: Caller SHOULD assume the `DeleteVolume` call
// succeeded.
VOLUME_DOES_NOT_EXIST = 5;
}
// Machine parsable error code.
DeleteVolumeErrorCode error_code = 1;
// Human readable description of error, possibly with additional
// information. This string maybe surfaced by CO to end users.
string error_description = 2;
}
// `ControllerPublishVolume` specific error.
message ControllerPublishVolumeError {
enum ControllerPublishVolumeErrorCode {
// Default value for backwards compatibility. SHOULD NOT be
// returned by Plugins. However, if a Plugin returns a
// `ControllerPublishVolumeErrorCode` code that an older CSI
// client is not aware of, the client will see this code (the
// default fallback).
//
// Recovery behavior: Caller SHOULD consider updating CSI client
// to match Plugin CSI version.
UNKNOWN = 0;
// Indicates that the call is either not implemented by the Plugin
// or disabled in the Plugin’s current mode of operation.
//
// Recovery behavior: Caller MUST not retry; caller MAY call
// `ControllerGetCapabilities` or `NodeGetCapabilities` to discover
// Plugin capabilities.
CALL_NOT_IMPLEMENTED = 1;
// Indicates that there is a already an operation pending for the
// specified volume. In general the Cluster Orchestrator (CO) is
// responsible for ensuring that there is no more than one call
// “in-flight” per volume at a given time. However, in some
// circumstances, the CO MAY lose state (for example when the CO
// crashes and restarts), and MAY issue multiple calls
// simultaneously for the same volume. The Plugin, SHOULD handle
// this as gracefully as possible, and MAY return this error code
// to reject secondary calls.
//
// Recovery behavior: Caller SHOULD ensure that there are no other
// calls pending for the specified volume, and then retry with
// exponential back off.
OPERATION_PENDING_FOR_VOLUME = 2;
// Indicates that the specified `VolumeID` is not allowed or
// understood by the Plugin. More human-readable information MAY
// be provided in the `error_description` field.
//
// Recovery behavior: Caller MUST fix the `VolumeID` before
// retrying.
INVALID_VOLUME_ID = 3;
// Indicates that the specified `VolumeMetadata` is not allowed or
// understood by the Plugin. More human-readable information MAY
// be provided in the `error_description` field.
//
// Recovery behavior: Caller MUST fix the `VolumeMetadata` before
// retrying.
INVALID_VOLUME_METADATA = 4;
// Indicates that a volume corresponding to the specified
// `VolumeID` does not exist.
//
// Recovery behavior: Caller SHOULD verify that the `VolumeID` is
// correct and that the volume is accessible and has not been
// deleted before retrying with exponential back off.
VOLUME_DOES_NOT_EXIST = 5;
// Indicates that a volume corresponding to the specified
// `VolumeID` is already attached to another node and does not
// support multi-node attach. If this error code is returned, the
// Plugin MUST also specify the `node_id` of the node the volume
// is already attached to.
//
// Recovery behavior: Caller MAY use the provided `node_ids`
// information to detach the volume from the other node. Caller
// SHOULD ensure the specified volume is not attached to any other
// node before retrying with exponential back off.
VOLUME_ALREADY_PUBLISHED = 6;
// Indicates that a node corresponding to the specified `NodeID`
// does not exist.
//
// Recovery behavior: Caller SHOULD verify that the `NodeID` is
// correct and that the node is available and has not been
// terminated or deleted before retrying with exponential backoff.
NODE_DOES_NOT_EXIST = 7;
// Indicates that a volume corresponding to the specified
// `VolumeID` is already attached to the maximum supported number
// of nodes and therefore this operation can not be completed
// until the volume is detached from at least one of the existing
// nodes. When this error code is returned, the Plugin MUST also
// specify the `NodeId` of all the nodes the volume is attached
// to.
//
// Recovery behavior: Caller MAY use the provided `node_ids`
// information to detach the volume from one other node before
// retrying with exponential backoff.
MAX_ATTACHED_NODES = 8;
// Indicates that the specified `NodeID` is not allowed or
// understood by the Plugin, or the Plugin does not support the
// operation without a `NodeID`. More human-readable information
// MAY be provided in the `error_description` field.
//
// Recovery behavior: Caller MUST fix the `NodeID` before
// retrying.
INVALID_NODE_ID = 9;
}
// Machine parsable error code.
ControllerPublishVolumeErrorCode error_code = 1;
// Human readable description of error, possibly with additional
// information. This string maybe surfaced by CO to end users.
string error_description = 2;
// On `VOLUME_ALREADY_ATTACHED` and `MAX_ATTACHED_NODES` errors,
// this field contains the node(s) that the specified volume is
// already attached to.
repeated NodeID node_ids = 3;
}
// `ControllerUnpublishVolume` specific error.
message ControllerUnpublishVolumeError {
enum ControllerUnpublishVolumeErrorCode {
// Default value for backwards compatibility. SHOULD NOT be
// returned by Plugins. However, if a Plugin returns a
// `ControllerUnpublishVolumeErrorCode` code that an older CSI
// client is not aware of, the client will see this code (the
// default fallback).
//
// Recovery behavior: Caller SHOULD consider updating CSI client
// to match Plugin CSI version.
UNKNOWN = 0;
// Indicates that the call is either not implemented by the Plugin
// or disabled in the Plugin’s current mode of operation.
//
// Recovery behavior: Caller MUST not retry; caller MAY call
// `ControllerGetCapabilities` or `NodeGetCapabilities` to
// discover Plugin capabilities.
CALL_NOT_IMPLEMENTED = 1;
// Indicates that there is a already an operation pending for the
// specified volume. In general the Cluster Orchestrator (CO) is
// responsible for ensuring that there is no more than one call
// “in-flight” per volume at a given time. However, in some
// circumstances, the CO MAY lose state (for example when the CO
// crashes and restarts), and MAY issue multiple calls
// simultaneously for the same volume. The Plugin, SHOULD handle
// this as gracefully as possible, and MAY return this error code
// to reject secondary calls.
//
// Recovery behavior: Caller SHOULD ensure that there are no other
// calls pending for the specified volume, and then retry with
// exponential back off.
OPERATION_PENDING_FOR_VOLUME = 2;
// Indicates that the specified `VolumeID` is not allowed or
// understood by the Plugin. More human-readable information MAY
// be provided in the `error_description` field.
//
// Recovery behavior: Caller MUST fix the `VolumeID` before
// retrying.
INVALID_VOLUME_ID = 3;
// Indicates that the specified `VolumeMetadata` is not allowed or
// understood by the Plugin. More human-readable information MAY
// be provided in the `error_description` field.
//
// Recovery behavior: Caller MUST fix the `VolumeMetadata` before
// retrying.
INVALID_VOLUME_METADATA = 4;
// Indicates that a volume corresponding to the specified
// `VolumeID` does not exist.
//
// Recovery behavior: Caller SHOULD verify that the `VolumeID` is
// correct and that the volume is accessible and has not been
// deleted before retrying with exponential back off.
VOLUME_DOES_NOT_EXIST = 5;
// Indicates that a node corresponding to the specified `NodeID`
// does not exist.
//
// Recovery behavior: Caller SHOULD verify that the `NodeID` is
// correct and that the node is available and has not been
// terminated or deleted before retrying.
NODE_DOES_NOT_EXIST = 6;
// Indicates that the specified `NodeID` is not allowed or
// understood by the Plugin. More human-readable information MAY
// be provided in the `error_description` field.
//
// Recovery behavior: Caller MUST fix the `NodeID` before
// retrying.
INVALID_NODE_ID = 7;
VOLUME_NOT_ATTACHED_TO_SPECIFIED_NODE = 8;
// Indicates that the Plugin does not support the operation
// without a `NodeID`.
//
// Recovery behavior: Caller MUST specify the `NodeID` before
// retrying.
NODE_ID_REQUIRED = 9;
}
ControllerUnpublishVolumeErrorCode error_code = 1;
string error_description = 2;
}
// `ValidateVolumeCapabilities` specific error.
message ValidateVolumeCapabilitiesError {
enum ValidateVolumeCapabilitiesErrorCode {
// Default value for backwards compatibility. SHOULD NOT be
// returned by Plugins. However, if a Plugin returns a
// `ValidateVolumeCapabilitiesErrorCode` code that an older CSI
// client is not aware of, the client will see this code (the
// default fallback).
//
// Recovery behavior: Caller SHOULD consider updating CSI client
// to match Plugin CSI version.
UNKNOWN = 0;
// Indicates that a volume corresponding to the specified
// `VolumeInfo` does not exist.
//
// Recovery behavior: Caller SHOULD verify that the `VolumeInfo`
// is correct and that the volume is accessable and has not been
// deleted before retrying.
VOLUME_DOES_NOT_EXIST = 1;
UNSUPPORTED_MOUNT_FLAGS = 2;
UNSUPPORTED_VOLUME_TYPE = 3;
UNSUPPORTED_FS_TYPE = 4;
// Indicates that the specified `VolumeInfo` is not allowed or
// understood by the Plugin. More human-readable information MAY
// be provided in the `error_description` field.
//
// Recovery behavior: Caller MUST fix the `VolumeInfo` before
// retrying.
INVALID_VOLUME_INFO = 5;
}
ValidateVolumeCapabilitiesErrorCode error_code = 1;
string error_description = 2;
}
// `NodePublishVolume` specific error.
message NodePublishVolumeError {
enum NodePublishVolumeErrorCode {
// Default value for backwards compatibility. SHOULD NOT be
// returned by Plugins. However, if a Plugin returns a
// `NodePublishVolumeErrorCode` code that an older CSI
// client is not aware of, the client will see this code (the
// default fallback).
//
// Recovery behavior: Caller SHOULD consider updating CSI client
// to match Plugin CSI version.
UNKNOWN = 0;
// Indicates that there is a already an operation pending for the
// specified volume. In general the Cluster Orchestrator (CO) is
// responsible for ensuring that there is no more than one call
// “in-flight” per volume at a given time. However, in some
// circumstances, the CO MAY lose state (for example when the CO
// crashes and restarts), and MAY issue multiple calls
// simultaneously for the same volume. The Plugin, SHOULD handle
// this as gracefully as possible, and MAY return this error code
// to reject secondary calls.
//
// Recovery behavior: Caller SHOULD ensure that there are no other
// calls pending for the specified volume, and then retry with
// exponential back off.
OPERATION_PENDING_FOR_VOLUME = 1;
// Indicates that a volume corresponding to the specified
// `VolumeID` does not exist.
//
// Recovery behavior: Caller SHOULD verify that the `VolumeID` is
// correct and that the volume is accessible and has not been
// deleted before retrying with exponential back off.
VOLUME_DOES_NOT_EXIST = 2;
UNSUPPORTED_MOUNT_FLAGS = 3;
UNSUPPORTED_VOLUME_TYPE = 4;
UNSUPPORTED_FS_TYPE = 5;
MOUNT_ERROR = 6;
// Indicates that the specified `VolumeID` is not allowed or
// understood by the Plugin. More human-readable information MAY
// be provided in the `error_description` field.
//
// Recovery behavior: Caller MUST fix the `VolumeID` before
// retrying.
INVALID_VOLUME_ID = 7;
}
NodePublishVolumeErrorCode error_code = 1;
string error_description = 2;
}
// `NodeUnpublishVolume` specific error.
message NodeUnpublishVolumeError {
enum NodeUnpublishVolumeErrorCode {
// Default value for backwards compatibility. SHOULD NOT be
// returned by Plugins. However, if a Plugin returns a
// `NodeUnpublishVolumeErrorCode` code that an older CSI
// client is not aware of, the client will see this code (the
// default fallback).
//
// Recovery behavior: Caller SHOULD consider updating CSI client
// to match Plugin CSI version.
UNKNOWN = 0;
// Indicates that there is a already an operation pending for the
// specified volume. In general the Cluster Orchestrator (CO) is
// responsible for ensuring that there is no more than one call
// “in-flight” per volume at a given time. However, in some
// circumstances, the CO MAY lose state (for example when the CO
// crashes and restarts), and MAY issue multiple calls
// simultaneously for the same volume. The Plugin, SHOULD handle
// this as gracefully as possible, and MAY return this error code
// to reject secondary calls.
//
// Recovery behavior: Caller SHOULD ensure that there are no other
// calls pending for the specified volume, and then retry with
// exponential back off.
OPERATION_PENDING_FOR_VOLUME = 1;
// Indicates that a volume corresponding to the specified
// `VolumeID` does not exist.
//
// Recovery behavior: Caller SHOULD verify that the `VolumeID` is
// correct and that the volume is accessible and has not been
// deleted before retrying with exponential back off.
VOLUME_DOES_NOT_EXIST = 2;
UNMOUNT_ERROR = 3;
// Indicates that the specified `VolumeID` is not allowed or
// understood by the Plugin. More human-readable information MAY
// be provided in the `error_description` field.
//
// Recovery behavior: Caller MUST fix the `VolumeID` before
// retrying.
INVALID_VOLUME_ID = 4;
}
NodeUnpublishVolumeErrorCode error_code = 1;
string error_description = 2;
}
// `ProbeNode` specific error.
message ProbeNodeError {
enum ProbeNodeErrorCode {
// Default value for backwards compatibility. SHOULD NOT be
// returned by Plugins. However, if a Plugin returns a
// `ProbeNodeErrorCode` code that an older CSI
// client is not aware of, the client will see this code (the
// default fallback).
//
// Recovery behavior: Caller SHOULD consider updating CSI client
// to match Plugin CSI version.
UNKNOWN = 0;
BAD_PLUGIN_CONFIG = 1;
MISSING_REQUIRED_HOST_DEPENDENCY = 2;
}
ProbeNodeErrorCode error_code = 1;
string error_description = 2;
}
// `GetNodeID` specific error.
message GetNodeIDError {
enum GetNodeIDErrorCode {
// Default value for backwards compatibility. SHOULD NOT be
// returned by Plugins. However, if a Plugin returns a
// `GetNodeIDErrorCode` code that an older CSI client is not aware
// of, the client will see this code (the default fallback).
//
// Recovery behavior: Caller SHOULD consider updating CSI client
// to match Plugin CSI version.
UNKNOWN = 0;
BAD_PLUGIN_CONFIG = 1;
MISSING_REQUIRED_HOST_DEPENDENCY = 2;
}
GetNodeIDErrorCode error_code = 1;
string error_description = 2;
}
// One of the following fields MUST be specified.
oneof value {
GeneralError general_error = 1;
CreateVolumeError create_volume_error = 2;
DeleteVolumeError delete_volume_error = 3;
ControllerPublishVolumeError controller_publish_volume_error = 4;
ControllerUnpublishVolumeError controller_unpublish_volume_error = 5;
ValidateVolumeCapabilitiesError validate_volume_capabilities_error = 6;
NodePublishVolumeError node_publish_volume_error = 7;
NodeUnpublishVolumeError node_unpublish_volume_error = 8;
ProbeNodeError probe_node_error = 9;
GetNodeIDError get_node_id_error = 10;
}
}
- A CO SHALL communicate with a Plugin using gRPC to access the
Identity
, and (optionally) theController
andNode
services.- proto3 SHOULD be used with gRPC, as per the official recommendations.
- All Plugins SHALL implement the REQUIRED Identity service RPCs.
Support for OPTIONAL RPCs is reported by the
ControllerGetCapabilities
andNodeGetCapabilities
RPC calls.
- The CO SHALL provide the listen-address for the Plugin by way of the
CSI_ENDPOINT
environment variable. Plugin components SHALL create, bind, and listen for RPCs on the specified listen address.- Only UNIX Domain Sockets may be used as endpoints. This will likely change in a future version of this specification to support non-UNIX platforms.
- All supported RPC services MUST be available at the listen address of the Plugin.
- The CO operator and Plugin Supervisor SHOULD take steps to ensure that any and all communication between the CO and Plugin Service are secured according to best practices.
- Communication between a CO and a Plugin SHALL be transported over UNIX Domain Sockets.
- gRPC is compatible with UNIX Domain Sockets; it is the responsibility of the CO operator and Plugin Supervisor to properly secure access to the Domain Socket using OS filesystem ACLs and/or other OS-specific security context tooling.
- SP’s supplying stand-alone Plugin controller appliances, or other remote components that are incompatible with UNIX Domain Sockets must provide a software component that proxies communication between a UNIX Domain Socket and the remote component(s). Proxy components transporting communication over IP networks SHALL be responsible for securing communications over such networks.
- Both the CO and Plugin SHOULD avoid accidental leakage of sensitive information (such as redacting such information from log files).
- Debugging and tracing are supported by external, CSI-independent additions and extensions to gRPC APIs, such as OpenTracing.
- The
CSI_ENDPOINT
environment variable SHALL be supplied to the Plugin by the Plugin Supervisor. - An operator SHALL configure the CO to connect to the Plugin via the listen address identified by
CSI_ENDPOINT
variable. - With exception to sensitive data, Plugin configuration SHOULD be specified by environment variables, whenever possible, instead of by command line flags or bind-mounted/injected files.
- Supervisor -> Plugin:
CSI_ENDPOINT=unix://path/to/unix/domain/socket.sock
. - Operator -> CO: use plugin at endpoint
unix://path/to/unix/domain/socket.sock
. - CO: monitor
/path/to/unix/domain/socket.sock
. - Plugin: read
CSI_ENDPOINT
, create UNIX socket at specified path, bind and listen. - CO: observe that socket now exists, establish connection.
- CO: invoke
GetSupportedVersions
.
- Plugins SHALL NOT specify requirements that include or otherwise reference directories and/or files on the root filesystem of the CO.
- Plugins SHALL NOT create additional files or directories adjacent to the UNIX socket specified by
CSI_ENDPOINT
; violations of this requirement constitute "abuse".- The Plugin Supervisor is the ultimate authority of the directory in which the UNIX socket endpoint is created and MAY enforce policies to prevent and/or mitigate abuse of the directory by Plugins.
- For Plugins packaged in software form:
- Plugin Packages SHOULD use a well-documented container image format (e.g., Docker, OCI).
- The chosen package image format MAY expose configurable Plugin properties as environment variables, unless otherwise indicated in the section below. Variables so exposed SHOULD be assigned default values in the image manifest.
- A Plugin Supervisor MAY programmatically evaluate or otherwise scan a Plugin Package’s image manifest in order to discover configurable environment variables.
- A Plugin SHALL NOT assume that an operator or Plugin Supervisor will scan an image manifest for environment variables.
- Variables defined by this specification SHALL be identifiable by their
CSI_
name prefix. - Configuration properties not defined by the CSI specification SHALL NOT use the same
CSI_
name prefix; this prefix is reserved for common configuration properties defined by the CSI specification. - The Plugin Supervisor SHOULD supply all recommended CSI environment variables to a Plugin.
- The Plugin Supervisor SHALL supply all required CSI environment variables to a Plugin.
Network endpoint at which a Plugin SHALL host CSI RPC services. The general format is:
{scheme}://{authority}{endpoint}
The following address types SHALL be supported by Plugins:
unix://path/to/unix/socket.sock
Note: All UNIX endpoints SHALL end with .sock
. See gRPC Name Resolution.
This variable is REQUIRED.
The Plugin Supervisor expects that a Plugin SHALL act as a long-running service vs. an on-demand, CLI-driven process.
Supervised plugins MAY be isolated and/or resource-bounded.
- Plugins SHOULD generate log messages to ONLY standard output and/or standard error.
- In this case the Plugin Supervisor SHALL assume responsibility for all log lifecycle management.
- Plugin implementations that deviate from the above recommendation SHALL clearly and unambiguously document the following:
- Logging configuration flags and/or variables, including working sample configurations.
- Default log destination(s) (where do the logs go if no configuration is specified?)
- Log lifecycle management ownership and related guidance (size limits, rate limits, rolling, archiving, expunging, etc.) applicable to the logging mechanism embedded within the Plugin.
- Plugins SHOULD NOT write potentially sensitive data to logs (e.g.
VolumeMetadata
).
- Plugin Packages MAY support all or a subset of CSI services; service combinations MAY be configurable at runtime by the Plugin Supervisor.
- Misconfigured plugin software SHOULD fail-fast with an OS-appropriate error code.
- Plugin Supervisor SHALL guarantee that plugins will have
CAP_SYS_ADMIN
capability on Linux when running on Nodes. - Plugins SHOULD clearly document any additionally required capabilities and/or security context.
- A Plugin SHOULD NOT assume that it is in the same Linux namespaces as the Plugin Supervisor. The CO MUST clearly document the mount propagation requirements for Node Plugins and the Plugin Supervisor SHALL satisfy the CO’s requirements.
- A Plugin MAY be constrained by cgroups.
- An operator or Plugin Supervisor MAY configure the devices cgroup subsystem to ensure that a Plugin may access requisite devices.
- A Plugin Supervisor MAY define resource limits for a Plugin.
- SPs SHOULD unambiguously document all of a Plugin’s resource requirements.