Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion add-db-to-osd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ for i in "${!OSD_LIST[@]}"; do
done

OK_TO_STOP=$(ceph osd ok-to-stop $OSD_ID)
if [ $OK_TOP_STOP -ne 0 ];
if [ $OK_TOP_STOP -ne 0 ]; then
echo "Error: stopping osd.$OSD_ID would result in data unavailability"
exit 1
fi
Expand Down
2 changes: 1 addition & 1 deletion deploy-minio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ echo "[3/10] Installing wget..."
sudo $PM install -y wget

echo "[4/10] Downloading and setting up MinIO binary..."
sudo wget https://dl.min.io/server/minio/release/linux-amd64/minio -O /usr/local/bin/minio
sudo wget https://dl.min.io/community/server/minio/release/linux-amd64/archive/minio.RELEASE.2025-04-22T22-12-26Z -O /usr/local/bin/minio
sudo chmod +x /usr/local/bin/minio

echo "[5/10] Creating ZFS filesystem ${POOL_NAME}/minio..."
Expand Down