Skip to content
README.md 5.06 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

Cyrill Troxler's avatar
Cyrill Troxler committed
This is still very experimental and should not be used in any production environment. Unexpected data loss could occur depending on what mounter and S3 storage backend is being used.

## Kubernetes installation

### Requirements

Cyrill Troxler's avatar
Cyrill Troxler committed
* Kubernetes 1.13+ (CSI v1.0.0 compatibility)
Cyrill Troxler's avatar
Cyrill Troxler committed
* Kubernetes has to allow privileged containers
* Docker daemon must allow shared mounts (systemd flag `MountFlags=shared`)

### 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
stringData:
  accessKeyID: <YOUR_ACCESS_KEY_ID>
  secretAccessKey: <YOUR_SECRET_ACCES_KEY>
  # For AWS set it to "https://s3.<region>.amazonaws.com"
Cyrill Troxler's avatar
Cyrill Troxler committed
  endpoint: <S3_ENDPOINT_URL>
  # If not on S3, set it to ""
Cyrill Troxler's avatar
Cyrill Troxler committed
  region: <S3_REGION>
```

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 attacher.yaml
kubectl create -f csi-s3.yaml
Cyrill Troxler's avatar
Cyrill Troxler committed
```

### 3. Create the storage class

Cyrill Troxler's avatar
Cyrill Troxler committed
```bash
kubectl create -f 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 pvc.yaml
Cyrill Troxler's avatar
Cyrill Troxler committed
```
Cyrill Troxler's avatar
Cyrill Troxler committed
2. 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
Cyrill Troxler's avatar
Cyrill Troxler committed
csi-s3-pvc   Bound     pvc-c5d4634f-8507-11e8-9f33-0e243832354b   5Gi        RWO            csi-s3         9s
Cyrill Troxler's avatar
Cyrill Troxler committed
```
Cyrill Troxler's avatar
Cyrill Troxler committed
3. Create a test pod which mounts your volume:
Cyrill Troxler's avatar
Cyrill Troxler committed
```bash
kubectl create -f poc.yaml
Cyrill Troxler's avatar
Cyrill Troxler committed
```
Cyrill Troxler's avatar
Cyrill Troxler committed
If the pod can start, everything should be working.

Cyrill Troxler's avatar
Cyrill Troxler committed
4. Test the mount
Cyrill Troxler's avatar
Cyrill Troxler committed
```bash
$ kubectl exec -ti csi-s3-test-nginx bash
$ mount | grep fuse
s3fs on /var/lib/www/html type fuse.s3fs (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other)
$ touch /var/lib/www/html/hello_world
```
Cyrill Troxler's avatar
Cyrill Troxler committed
If something does not work as expected, check the troubleshooting section below.

## Additional configuration

### Mounter

Cyrill Troxler's avatar
Cyrill Troxler committed
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).

Cyrill Troxler's avatar
Cyrill Troxler committed
The driver can be configured to use one of these mounters to mount buckets:
Cyrill Troxler's avatar
Cyrill Troxler committed

Cyrill Troxler's avatar
Cyrill Troxler committed
* [rclone](https://rclone.org/commands/rclone_mount)
Cyrill Troxler's avatar
Cyrill Troxler committed
* [s3fs](https://github.com/s3fs-fuse/s3fs-fuse)
* [goofys](https://github.com/kahing/goofys)
* [s3backer](https://github.com/archiecobbs/s3backer)
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.

Cyrill Troxler's avatar
Cyrill Troxler committed
All mounters have different strengths and weaknesses depending on your use case. Here are some characteristics which should help you choose a mounter:

Cyrill Troxler's avatar
Cyrill Troxler committed
* Almost full POSIX compatibility (depends on caching mode)
* Files can be viewed normally with any S3 client

Cyrill Troxler's avatar
Cyrill Troxler committed
* Large subset of POSIX
* Files can be viewed normally with any S3 client
* Does not support appends or random writes

Cyrill Troxler's avatar
Cyrill Troxler committed
* Weak POSIX compatibility
* Performance first
* Files can be viewed normally with any S3 client
* Does not support appends or random writes

Cyrill Troxler's avatar
Cyrill Troxler committed
#### s3backer (experimental*)
* Represents a block device stored on S3
* Allows to use a real filesystem
* Files are not readable with other S3 clients
* Support appends
* Supports compression before upload (Not yet implemented in this driver)
* Supports encryption before upload (Not yet implemented in this driver)

Cyrill Troxler's avatar
Cyrill Troxler committed
*s3backer is experimental at this point because volume corruption can occur pretty quickly in case of an unexpected shutdown of a Kubernetes node or CSI pod.
The s3backer binary is not bundled with the normal docker image to keep that as small as possible. Use the `<version>-full` image tag for testing s3backer.
Cyrill Troxler's avatar
Cyrill Troxler committed
Fore more detailed limitations consult the documentation of the different projects.
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/ctrox/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
```