Skip to content

Instantly share code, notes, and snippets.

View vxav's full-sized avatar

Xavier vxav

View GitHub Profile
@j0ju
j0ju / rook-shutdown.sh
Created January 18, 2021 11:13 — forked from chrigl/rook-shutdown.sh
shutdown rook
#!/bin/bash
# This script shuts down a rook-ceph cluster
# Please DON'T use this. It is only for demonstration purposes.
set -eux -o pipefail
force=false
while getopts "f" arg; do
case $arg in
f)
force=true