This commit is contained in:
Nico Schottelius 2021-06-14 20:14:59 +02:00
parent 0dfee127ba
commit 5198193607
1 changed files with 4 additions and 3 deletions

View File

@ -14,10 +14,11 @@ kubectl apply -f toolbox.yaml
## v2 with included manifests ## v2 with included manifests
* Patched for IPv6 support * Patched for IPv6 support
* Including RBD * Including RBD support
* Including CephFS support
``` ```
for yaml in crds common operator cluster storageclass toolbox; do for yaml in crds common operator cluster storageclass-cephfs storageclass-rbd toolbox; do
kubectl apply -f ${yaml}.yaml kubectl apply -f ${yaml}.yaml
done done
``` ```
@ -25,7 +26,7 @@ done
Deleting (in case of teardown): Deleting (in case of teardown):
``` ```
for yaml in crds common operator cluster storageclass toolbox; do for yaml in crds common operator cluster storageclass-cephfs storageclass-rbd toolbox; do
kubectl delete -f ${yaml}.yaml kubectl delete -f ${yaml}.yaml
done done
``` ```