1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

remove storage class deployment from EKS tutorial

This commit is contained in:
Kaveh Vahedipour 2019-03-06 17:54:06 +01:00
parent 0231e7eae0
commit abf2e78bd6

View file

@ -152,26 +152,6 @@ $ kubectl get nodes
ip-172-31-45-199.us-west-2.compute.internal Ready <none> 1d v1.10.3
```
### Create a storage class for persistent data
* Edit a new file `gp2-storage-class.yaml`
```
kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
name: gp2
provisioner: kubernetes.io/aws-ebs
parameters:
type: gp2
reclaimPolicy: Retain
mountOptions:
- debug
```
* Apply the storage class
```
$ kubectl apply -f gp2-storage-class.yaml
```
### Setup `helm`
* Create service account for `tiller`
```