mirror of
https://github.com/clearlinux/cloud-native-setup.git
synced 2026-08-19 05:27:26 +00:00
bd6ac270e6
Update to rook v1.1.0 which has CSI support by default. Closes #30 Signed-off-by: Justin Scott <justin.a.scott@intel.com>
4 lines
145 B
Bash
4 lines
145 B
Bash
#!/bin/bash
|
|
name=$( echo $(kubectl get po -o name -n rook-ceph | grep tools) | cut -c 5-)
|
|
kubectl exec -it "${name}" -n rook-ceph -- ceph status
|