mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-22 22:30:23 +00:00
Merge pull request #174 from humblec/upstream/csi-v0.1
Markdown linter and spelling corrections.
This commit is contained in:
commit
cb346a5f0b
@ -13,4 +13,3 @@ For example usage of RBD and CephFS CSI plugins, see examples in `examples/`.
|
|||||||
## Troubleshooting
|
## Troubleshooting
|
||||||
|
|
||||||
Please submit an issue at: [Issues](https://github.com/ceph/ceph-csi/issues)
|
Please submit an issue at: [Issues](https://github.com/ceph/ceph-csi/issues)
|
||||||
|
|
||||||
|
@ -7,13 +7,15 @@ The CSI CephFS plugin is able to both provision new CephFS volumes and attach an
|
|||||||
CSI CephFS plugin can be compiled in a form of a binary file or in a form of a Docker image. When compiled as a binary file, the result is stored in `_output/` directory with the name `cephfsplugin`. When compiled as an image, it's stored in the local Docker image store.
|
CSI CephFS plugin can be compiled in a form of a binary file or in a form of a Docker image. When compiled as a binary file, the result is stored in `_output/` directory with the name `cephfsplugin`. When compiled as an image, it's stored in the local Docker image store.
|
||||||
|
|
||||||
Building binary:
|
Building binary:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ make cephfsplugin
|
make cephfsplugin
|
||||||
```
|
```
|
||||||
|
|
||||||
Building Docker image:
|
Building Docker image:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ make image-cephfsplugin
|
make image-cephfsplugin
|
||||||
```
|
```
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
@ -21,7 +23,7 @@ $ make image-cephfsplugin
|
|||||||
**Available command line arguments:**
|
**Available command line arguments:**
|
||||||
|
|
||||||
Option | Default value | Description
|
Option | Default value | Description
|
||||||
------ | ------------- | -----------
|
--------------------|-----------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||||
`--endpoint` | `unix://tmp/csi.sock` | CSI endpoint, must be a UNIX socket
|
`--endpoint` | `unix://tmp/csi.sock` | CSI endpoint, must be a UNIX socket
|
||||||
`--drivername` | `csi-cephfsplugin` | name of the driver (Kubernetes: `provisioner` field in StorageClass must correspond to this value)
|
`--drivername` | `csi-cephfsplugin` | name of the driver (Kubernetes: `provisioner` field in StorageClass must correspond to this value)
|
||||||
`--nodeid` | _empty_ | This node's ID
|
`--nodeid` | _empty_ | This node's ID
|
||||||
@ -36,7 +38,7 @@ Option | Default value | Description
|
|||||||
**Available volume parameters:**
|
**Available volume parameters:**
|
||||||
|
|
||||||
Parameter | Required | Description
|
Parameter | Required | Description
|
||||||
--------- | -------- | -----------
|
----------------------------------------------------------------------------------------------------|--------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||||
`monitors` | yes | Comma separated list of Ceph monitors (e.g. `192.168.100.1:6789,192.168.100.2:6789,192.168.100.3:6789`)
|
`monitors` | yes | Comma separated list of Ceph monitors (e.g. `192.168.100.1:6789,192.168.100.2:6789,192.168.100.3:6789`)
|
||||||
`monValueFromSecret` | one of `monitors` and `monValueFromSecret` must be set | a string pointing the key in the credential secret, whose value is the mon. This is used for the case when the monitors' IP or hostnames are changed, the secret can be updated to pick up the new monitors. If both `monitors` and `monValueFromSecret` are set and the monitors set in the secret exists, `monValueFromSecret` takes precedence.
|
`monValueFromSecret` | one of `monitors` and `monValueFromSecret` must be set | a string pointing the key in the credential secret, whose value is the mon. This is used for the case when the monitors' IP or hostnames are changed, the secret can be updated to pick up the new monitors. If both `monitors` and `monValueFromSecret` are set and the monitors set in the secret exists, `monValueFromSecret` takes precedence.
|
||||||
`mounter` | no | Mount method to be used for this volume. Available options are `kernel` for Ceph kernel client and `fuse` for Ceph FUSE driver. Defaults to "default mounter", see command line arguments.
|
`mounter` | no | Mount method to be used for this volume. Available options are `kernel` for Ceph kernel client and `fuse` for Ceph FUSE driver. Defaults to "default mounter", see command line arguments.
|
||||||
@ -48,11 +50,13 @@ Parameter | Required | Description
|
|||||||
|
|
||||||
**Required secrets for `provisionVolume=true`:**
|
**Required secrets for `provisionVolume=true`:**
|
||||||
Admin credentials are required for provisioning new volumes
|
Admin credentials are required for provisioning new volumes
|
||||||
|
|
||||||
* `adminID`: ID of an admin client
|
* `adminID`: ID of an admin client
|
||||||
* `adminKey`: key of the admin client
|
* `adminKey`: key of the admin client
|
||||||
|
|
||||||
**Required secrets for `provisionVolume=false`:**
|
**Required secrets for `provisionVolume=false`:**
|
||||||
User credentials with access to an existing volume
|
User credentials with access to an existing volume
|
||||||
|
|
||||||
* `userID`: ID of a user client
|
* `userID`: ID of a user client
|
||||||
* `userKey`: key of a user client
|
* `userKey`: key of a user client
|
||||||
|
|
||||||
@ -60,7 +64,7 @@ Notes on volume size: when provisioning a new volume, `max_bytes` quota attribut
|
|||||||
|
|
||||||
## Deployment with Kubernetes
|
## Deployment with Kubernetes
|
||||||
|
|
||||||
Requires Kubernetes 1.11
|
Requires Kubernetes 1.13
|
||||||
|
|
||||||
Your Kubernetes cluster must allow privileged pods (i.e. `--allow-privileged` flag must be set to true for both the API server and the kubelet). Moreover, as stated in the [mount propagation docs](https://kubernetes.io/docs/concepts/storage/volumes/#mount-propagation), the Docker daemon of the cluster nodes must allow shared mounts.
|
Your Kubernetes cluster must allow privileged pods (i.e. `--allow-privileged` flag must be set to true for both the API server and the kubelet). Moreover, as stated in the [mount propagation docs](https://kubernetes.io/docs/concepts/storage/volumes/#mount-propagation), the Docker daemon of the cluster nodes must allow shared mounts.
|
||||||
|
|
||||||
@ -69,9 +73,9 @@ YAML manifests are located in `deploy/cephfs/kubernetes`.
|
|||||||
**Deploy RBACs for sidecar containers and node plugins:**
|
**Deploy RBACs for sidecar containers and node plugins:**
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ kubectl create -f csi-attacher-rbac.yaml
|
kubectl create -f csi-attacher-rbac.yaml
|
||||||
$ kubectl create -f csi-provisioner-rbac.yaml
|
kubectl create -f csi-provisioner-rbac.yaml
|
||||||
$ kubectl create -f csi-nodeplugin-rbac.yaml
|
kubectl create -f csi-nodeplugin-rbac.yaml
|
||||||
```
|
```
|
||||||
|
|
||||||
Those manifests deploy service accounts, cluster roles and cluster role bindings. These are shared for both RBD and CephFS CSI plugins, as they require the same permissions.
|
Those manifests deploy service accounts, cluster roles and cluster role bindings. These are shared for both RBD and CephFS CSI plugins, as they require the same permissions.
|
||||||
@ -79,8 +83,8 @@ Those manifests deploy service accounts, cluster roles and cluster role bindings
|
|||||||
**Deploy CSI sidecar containers:**
|
**Deploy CSI sidecar containers:**
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ kubectl create -f csi-cephfsplugin-attacher.yaml
|
kubectl create -f csi-cephfsplugin-attacher.yaml
|
||||||
$ kubectl create -f csi-cephfsplugin-provisioner.yaml
|
kubectl create -f csi-cephfsplugin-provisioner.yaml
|
||||||
```
|
```
|
||||||
|
|
||||||
Deploys stateful sets for external-attacher and external-provisioner sidecar containers for CSI CephFS.
|
Deploys stateful sets for external-attacher and external-provisioner sidecar containers for CSI CephFS.
|
||||||
@ -88,14 +92,15 @@ Deploys stateful sets for external-attacher and external-provisioner sidecar con
|
|||||||
**Deploy CSI CephFS driver:**
|
**Deploy CSI CephFS driver:**
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ kubectl create -f csi-cephfsplugin.yaml
|
kubectl create -f csi-cephfsplugin.yaml
|
||||||
```
|
```
|
||||||
|
|
||||||
Deploys a daemon set with two containers: CSI driver-registrar and the CSI CephFS driver.
|
Deploys a daemon set with two containers: CSI driver-registrar and the CSI CephFS driver.
|
||||||
|
|
||||||
## Verifying the deployment in Kubernetes
|
## Verifying the deployment in Kubernetes
|
||||||
|
|
||||||
After successfuly completing the steps above, you should see output similar to this:
|
After successfully completing the steps above, you should see output similar to this:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ kubectl get all
|
$ kubectl get all
|
||||||
NAME READY STATUS RESTARTS AGE
|
NAME READY STATUS RESTARTS AGE
|
||||||
@ -115,4 +120,3 @@ You can try deploying a demo pod from `examples/cephfs` to test the deployment f
|
|||||||
### Notes on volume deletion
|
### Notes on volume deletion
|
||||||
|
|
||||||
Volumes that were provisioned dynamically (i.e. `provisionVolume=true`) are allowed to be deleted by the driver as well, if the user chooses to do so. Otherwise, the driver is forbidden to delete such volumes - attempting to delete them is a no-op.
|
Volumes that were provisioned dynamically (i.e. `provisionVolume=true`) are allowed to be deleted by the driver as well, if the user chooses to do so. Otherwise, the driver is forbidden to delete such volumes - attempting to delete them is a no-op.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user