Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added baremetal ceph package upgrade script #57

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
33 changes: 33 additions & 0 deletions scripts/upgrade_bm_pkgs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#!/usr/bin/env bash
HOST_LIST=$(cephadm shell ceph orch host ls | awk 'NR>2 {print line} {line=$2}')
echo "Host list: $HOST_LIST"
if [[ -z $1 ]]; then
echo "No release version provided"
exit 1
elif [[ ! $1 =~ (quincy|reef|squid)$ ]]; then
echo "Invalid release provided, please provide one of: quincy, reef or squid"
exit 1
fi
for i in $HOST_LIST
do
if ssh -o StrictHostKeyChecking=accept-new $i dpkg -l | grep cephadm > /dev/null 2>&1; then

echo "Cephadm installed on host with ip $i, updating repo"
ssh -o StrictHostKeyChecking=accept-new $i cephadm add-repo --release $1

echo "Updating Cephadm package"
ssh -o StrictHostKeyChecking=accept-new $i apt install -y --only-upgrade cephadm

echo "Checking for ceph-common package"
if ssh -o StrictHostKeyChecking=accept-new $i dpkg -l | grep ceph-common > /dev/null 2>&1; then

echo "Ceph-common installed, updating"
ssh -o StrictHostKeyChecking=accept-new $i apt install -y --only-upgrade ceph-common
else
echo "Ceph-common not installed, skipping"
fi
else
echo "Cephadm not installed, skipping"
continue
fi
done