Commit a0b7de1e authored by garciadeblas's avatar garciadeblas
Browse files

Merge branch 'fix/kubernetes_manual_installation_volume_issue' into 'master'

Updated manifest for k8s persistent volume installation

See merge request !83
parents 663e4c9a d242efc9
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -323,7 +323,7 @@ Other configuration you need for your kubernetes cluster is the creation of the
A kubernetes persistent volume storage can be installed to your kubernetes cluster applying the following manifest.

```bash
kubectl apply -f https://openebs.github.io/charts/openebs-operator-1.6.0.yaml
kubectl apply -f https://openebs.github.io/charts/openebs-operator.yaml
```

After the installation, you need to check if there is a default `storageclass` in your kubernetes:
@@ -333,8 +333,6 @@ kubectl get storageclass
NAME                         PROVISIONER                                                RECLAIMPOLICY   VOLUMEBINDINGMODE      ALLOWVOLUMEEXPANSION   AGE
openebs-device               openebs.io/local                                           Delete          WaitForFirstConsumer   false                  5m47s
openebs-hostpath             openebs.io/local                                           Delete          WaitForFirstConsumer   false                  5m47s
openebs-jiva-default         openebs.io/provisioner-iscsi                               Delete          Immediate              false                  5m48s
openebs-snapshot-promoter    volumesnapshot.external-storage.k8s.io/snapshot-promoter   Delete          Immediate              false                  5m47s
```

Until now, there is not default `storageclass` defined. With the command below we will define `openebs-hostpath` as default storageclass:
@@ -350,8 +348,6 @@ kubectl get storageclass
NAME                         PROVISIONER                                                RECLAIMPOLICY   VOLUMEBINDINGMODE      ALLOWVOLUMEEXPANSION   AGE
openebs-device               openebs.io/local                                           Delete          WaitForFirstConsumer   false                  5m47s
openebs-hostpath (default)   openebs.io/local                                           Delete          WaitForFirstConsumer   false                  5m47s
openebs-jiva-default         openebs.io/provisioner-iscsi                               Delete          Immediate              false                  5m48s
openebs-snapshot-promoter    volumesnapshot.external-storage.k8s.io/snapshot-promoter   Delete          Immediate              false                  5m47s
```

For Kubernetes clusters > 1.15 there is needed special permission of Tiller that can be added by the following command: