mirror of
https://codeberg.org/hyperreal/admin-scripts
synced 2025-01-19 00:03:44 +01:00
12 lines
209 B
Plaintext
12 lines
209 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
selection=$(mcli ls minio | awk '{print $5}' | gum choose --limit=1)
|
||
|
|
||
|
gum format -t markdown "# ${selection}"
|
||
|
echo ""
|
||
|
mcli replicate status "minio/${selection}"
|
||
|
|
||
|
exit 0
|