diff --git a/rook/README.md b/rook/README.md index 8565ffc..a2f919e 100644 --- a/rook/README.md +++ b/rook/README.md @@ -14,10 +14,11 @@ kubectl apply -f toolbox.yaml ## v2 with included manifests * 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 done ``` @@ -25,7 +26,7 @@ done 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 done ```