A FlexVolume driver is an executable file that resides in a well-defined
directory on all machines in the cluster, both masters and nodes.
OpenShift Origin calls it whenever it needs to attach, detach, mount, or unmount
a volume represented by a PersistentVolume
with flexVolume
as source.
The first command-line argument of the driver is always an operation name. Other
parameters are specific to each operation. Most of the operations takes a
JSON(JavaScript Object Notation) string as a parameter. This parameter is a
complete JSON string, and not the name of a file with the JSON data.
-
All flexVolume.options
.
-
Some options from flexVolume
prefixed by kubernetes.io/
, such as fsType
and readwrite
.
-
Content of the referenced secret (if specified) prefixed by kubernetes.io/secret/
.
Example FlexVolume Driver JSON input
{
"fooServer": "192.168.0.1:1234", (1)
"fooVolumeName": "bar",
"kubernetes.io/fsType": "ext4", (2)
"kubernetes.io/readwrite": "ro", (3)
"kubernetes.io/secret/<key name>": "<key value>", (4)
"kubernetes.io/secret/<another key name>": "<another key value>",
}
1 |
All options from flexVolume.options . |
2 |
Value of flexVolume.fsType . |
3 |
ro /rw based on flexVolume.readOnly . |
4 |
All keys and their values from the secret referenced by flexVolume.secretRef . |
OpenShift Origin expects JSON data on standard output of the driver. When not
specified, the output describes the result of the operation.
FlexVolume Driver Default Output
{
"status": "<Success/Failure/Not supported>",
"message": "<Reason for success/failure>"
}
Exit code of the driver should be 0
for success and 1
for error.
Operations should be idempotent, which means that the attachment of an already
attached volume or the mounting of an already mounted volume should result in a
successful operation.
The FlexVolume driver can work in two modes:
The attach/detach
operation is used by the OpenShift Origin master to attach a
volume to a node and to detach it from a node. This is useful when a node
becomes unresponsive from any reason. Then, the master can kill all pods on the
node, detach all volumes from it, and attach the volumes to other nodes to
resume the applications while the original node is still not reachable.
|
Not all storage back-end supports master-initiated detachment of a volume from another machine.
|
FlexVolume Drivers with Master-initiated Attach/Detach
A FlexVolume driver that supports master-controlled attach/detach must implement
the following operations:
init
-
Initializes the driver. It is called during initialization of masters and nodes.
getvolumename
-
Returns the unique name of the volume. This name must be consistent among all
masters and nodes, because it is used in subsequent detach
call as
<volume-name>
. Any /
characters in the <volume-name>
are automatically
replaced by ~
.
attach
-
Attaches a volume represented by the JSON to a given node. This operation should
return the name of the device on the node if it is known (i.e. it has been
assigned by the storage back-end before it runs). If the device is not known,
the device must be found on the node by the subsequent waitforattach
operation.
waitforattach
-
Waits until a volume is fully attached to a node and its device emerges.
If the previous attach
operation has returned <device-name>
, it is provided
as an input parameter. Otherwise, <device-name>
is empty and the operation must find the device on the node.
detach
-
Detaches the given volume from a node. <volume-name>
is the name of the device
returned by the getvolumename
operation. Any /
characters in the
<volume-name>
are automatically replaced by ~
.
isattached
-
Checks that a volume is attached to a node.
mountdevice
-
Mounts a volume’s device to a directory. <device-name>
is name of the
device as returned by the previous waitforattach
operation.
unmountdevice
-
Unmounts a volume’s device from a directory.
-
Arguments: <mount-dir>
-
Executed on: node
All other operations should return JSON with {"status": "Not supported"}
and exit code 1
.
|
Master-initiated attach/detach operations are enabled by default in
OpenShift Origin 3.6. They may work in older versions, but must be explicitly
enabled. See Enabling Controller-managed Attachment and Detachment.
When not enabled, the attach/detach operations are initiated by a node where the
volume should be attached to or detached from. Syntax and all parameters of
FlexVolume driver invocations are the same in both cases.
|
FlexVolume Drivers Without Master-initiated Attach/Detach
FlexVolume drivers that do not support master-controlled attach/detach are
executed only on the node and must implement these operations:
init
-
Initializes the driver. It is called during initialization of all nodes.
mount
-
Mounts a volume to directory. This can include anything that is necessary
to mount the volume, including attaching the volume to the node, finding the
its device, and then mounting the device.
unmount
-
Unmounts a volume from a directory. This can include anything that is
necessary to clean up the volume after unmounting, such as detaching the volume
from the node.
All other operations should return JSON with {"status": "Not supported"}
and exit code 1
.