Skip to content
README.md 6.9 KiB
Newer Older
Cyrill Troxler's avatar
Cyrill Troxler committed
# CSI for S3
Cyrill Troxler's avatar
Cyrill Troxler committed
This is a Container Storage Interface ([CSI](https://github.com/container-storage-interface/spec/blob/master/spec.md)) for S3 (or S3 compatible) storage. This can dynamically allocate buckets and mount them via a fuse mount into any container.
Cyrill Troxler's avatar
Cyrill Troxler committed

## Kubernetes installation

### Requirements

Cyrill Troxler's avatar
Cyrill Troxler committed
* Kubernetes has to allow privileged containers
* Docker daemon must allow shared mounts (systemd flag `MountFlags=shared`)

### Helm chart

Helm chart is published at `https://yandex-cloud.github.io/k8s-csi-s3`:

```
helm repo add yandex-s3 https://yandex-cloud.github.io/k8s-csi-s3/charts

helm install csi-s3 yandex-s3/csi-s3
```

### Manual installation

#### 1. Create a secret with your S3 credentials
Cyrill Troxler's avatar
Cyrill Troxler committed
```yaml
apiVersion: v1
kind: Secret
metadata:
  name: csi-s3-secret
Ching Yi, Chan's avatar
Ching Yi, Chan committed
  # Namespace depends on the configuration in the storageclass.yaml
  namespace: kube-system
Cyrill Troxler's avatar
Cyrill Troxler committed
stringData:
  accessKeyID: <YOUR_ACCESS_KEY_ID>
  secretAccessKey: <YOUR_SECRET_ACCESS_KEY>
  # For AWS set it to "https://s3.<region>.amazonaws.com", for example https://s3.eu-central-1.amazonaws.com
  endpoint: https://storage.yandexcloud.net
  # For AWS set it to AWS region
  #region: ""
Cyrill Troxler's avatar
Cyrill Troxler committed
```

Cyrill Troxler's avatar
Cyrill Troxler committed
The region can be empty if you are using some other S3 compatible storage.

#### 2. Deploy the driver
Cyrill Troxler's avatar
Cyrill Troxler committed
```bash
cd deploy/kubernetes
kubectl create -f provisioner.yaml
kubectl create -f driver.yaml
kubectl create -f csi-s3.yaml
Cyrill Troxler's avatar
Cyrill Troxler committed
```

##### Upgrading

If you're upgrading from <= 0.35.5 - delete all resources from `attacher.yaml`:

```
wget https://raw.githubusercontent.com/yandex-cloud/k8s-csi-s3/v0.35.5/deploy/kubernetes/attacher.yaml
kubectl delete -f attacher.yaml
```

If you're upgrading from <= 0.40.6 - delete all resources from old `provisioner.yaml`:

```bash
wget -O old-provisioner.yaml https://raw.githubusercontent.com/yandex-cloud/k8s-csi-s3/v0.40.6/deploy/kubernetes/provisioner.yaml
kubectl delete -f old-provisioner.yaml
```

Then reapply `csi-s3.yaml`, `driver.yaml` and `provisioner.yaml`:

```bash
cd deploy/kubernetes
kubectl apply -f provisioner.yaml
kubectl apply -f driver.yaml
kubectl apply -f csi-s3.yaml
```

#### 3. Create the storage class
Cyrill Troxler's avatar
Cyrill Troxler committed
```bash
kubectl create -f examples/storageclass.yaml
Cyrill Troxler's avatar
Cyrill Troxler committed
```

#### 4. Test the S3 driver
Cyrill Troxler's avatar
Cyrill Troxler committed
1. Create a pvc using the new storage class:
Cyrill Troxler's avatar
Cyrill Troxler committed
    ```bash
    kubectl create -f examples/pvc.yaml
    ```
1. Check if the PVC has been bound:
Cyrill Troxler's avatar
Cyrill Troxler committed
    ```bash
    $ kubectl get pvc csi-s3-pvc
    NAME         STATUS    VOLUME                                     CAPACITY   ACCESS MODES   STORAGECLASS   AGE
    csi-s3-pvc   Bound     pvc-c5d4634f-8507-11e8-9f33-0e243832354b   5Gi        RWO            csi-s3         9s
    ```
1. Create a test pod which mounts your volume:
Cyrill Troxler's avatar
Cyrill Troxler committed
    ```bash
    kubectl create -f examples/pod.yaml
    ```
Cyrill Troxler's avatar
Cyrill Troxler committed
    If the pod can start, everything should be working.
Cyrill Troxler's avatar
Cyrill Troxler committed

Cyrill Troxler's avatar
Cyrill Troxler committed
    ```bash
    $ kubectl exec -ti csi-s3-test-nginx bash
    $ mount | grep fuse
    pvc-035763df-0488-4941-9a34-f637292eb95c: on /usr/share/nginx/html/s3 type fuse.geesefs (rw,nosuid,nodev,relatime,user_id=65534,group_id=0,default_permissions,allow_other)
    $ touch /usr/share/nginx/html/s3/hello_world
Cyrill Troxler's avatar
Cyrill Troxler committed
    ```
Cyrill Troxler's avatar
Cyrill Troxler committed
If something does not work as expected, check the troubleshooting section below.

## Additional configuration

### Bucket

By default, csi-s3 will create a new bucket per volume. The bucket name will match that of the volume ID. If you want your volumes to live in a precreated bucket, you can simply specify the bucket in the storage class parameters:

```yaml
kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
  name: csi-s3-existing-bucket
provisioner: ru.yandex.s3.csi
  mounter: geesefs
  options: "--memory-limit 1000 --dir-mode 0777 --file-mode 0666"
  bucket: some-existing-bucket-name
```

If the bucket is specified, it will still be created if it does not exist on the backend. Every volume will get its own prefix within the bucket which matches the volume ID. When deleting a volume, also just the prefix will be deleted.

### Static Provisioning

If you want to mount a pre-existing bucket or prefix within a pre-existing bucket and don't want csi-s3 to delete it when PV is deleted, you can use static provisioning.

To do that you should omit `storageClassName` in the `PersistentVolumeClaim` and manually create a `PersistentVolume` with a matching `claimRef`, like in the following example: [deploy/kubernetes/examples/pvc-manual.yaml](deploy/kubernetes/examples/pvc-manual.yaml).

We **strongly recommend** to use the default mounter which is [GeeseFS](https://github.com/yandex-cloud/geesefs).
Cyrill Troxler's avatar
Cyrill Troxler committed

However there is also support for two other backends: [s3fs](https://github.com/s3fs-fuse/s3fs-fuse) and [rclone](https://rclone.org/commands/rclone_mount).
Cyrill Troxler's avatar
Cyrill Troxler committed

Cyrill Troxler's avatar
Cyrill Troxler committed
The mounter can be set as a parameter in the storage class. You can also create multiple storage classes for each mounter if you like.

As S3 is not a real file system there are some limitations to consider here.
Depending on what mounter you are using, you will have different levels of POSIX compability.
Also depending on what S3 storage backend you are using there are not always [consistency guarantees](https://github.com/gaul/are-we-consistent-yet#observed-consistency).

You can check POSIX compatibility matrix here: https://github.com/yandex-cloud/geesefs#posix-compatibility-matrix.
Cyrill Troxler's avatar
Cyrill Troxler committed

* Almost full POSIX compatibility
* Good performance for both small and big files
* Does not store file permissions and custom modification times
* By default runs **outside** of the csi-s3 container using systemd, to not crash
  mountpoints with "Transport endpoint is not connected" when csi-s3 is upgraded
  or restarted. Add `--no-systemd` to `parameters.options` of the `StorageClass`
  to disable this behaviour.
* Almost full POSIX compatibility
* Good performance for big files, poor performance for small files
* Very slow for directories with a large number of files
Cyrill Troxler's avatar
Cyrill Troxler committed

* Poor POSIX compatibility
* Bad performance for big files, okayish performance for small files
* Doesn't create directory objects like s3fs or GeeseFS
Cyrill Troxler's avatar
Cyrill Troxler committed

## Troubleshooting

### Issues while creating PVC

Cyrill Troxler's avatar
Cyrill Troxler committed
Check the logs of the provisioner:

```bash
kubectl logs -l app=csi-provisioner-s3 -c csi-s3
Cyrill Troxler's avatar
Cyrill Troxler committed
```

### Issues creating containers

Cyrill Troxler's avatar
Cyrill Troxler committed
1. Ensure feature gate `MountPropagation` is not set to `false`
2. Check the logs of the s3-driver:

```bash
kubectl logs -l app=csi-s3 -c csi-s3
Cyrill Troxler's avatar
Cyrill Troxler committed
```

Cyrill Troxler's avatar
Cyrill Troxler committed
This project can be built like any other go application.
Cyrill Troxler's avatar
Cyrill Troxler committed
```bash
go get -u github.com/yandex-cloud/k8s-csi-s3
Cyrill Troxler's avatar
Cyrill Troxler committed
```
Cyrill Troxler's avatar
Cyrill Troxler committed
```bash
Cyrill Troxler's avatar
Cyrill Troxler committed
```
Cyrill Troxler's avatar
Cyrill Troxler committed
Currently the driver is tested by the [CSI Sanity Tester](https://github.com/kubernetes-csi/csi-test/tree/master/pkg/sanity). As end-to-end tests require S3 storage and a mounter like s3fs, this is best done in a docker container. A Dockerfile and the test script are in the `test` directory. The easiest way to run the tests is to just use the make command:
Cyrill Troxler's avatar
Cyrill Troxler committed
```bash
Cyrill Troxler's avatar
Cyrill Troxler committed
```