Workaround for debian-reef folder issue

This PS changes ceph repo to debian-18.2.1 from
debian-reef due to some issues with debian-reef
folder at https://download.ceph.com/

Change-Id: I31c501541b54d9253c334b56df975bddb13bbaeb
This commit is contained in:
Sergiy Markin 2024-03-04 19:31:54 +00:00
parent 0e086e4c12
commit 3a2399c99f
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
- name: Add Ceph apt repository
apt_repository:
repo: deb https://download.ceph.com/debian-reef/ "{{ ansible_distribution_release }}" main
repo: deb https://download.ceph.com/debian-18.2.1/ "{{ ansible_distribution_release }}" main
state: present
filename: ceph.list

View File

@ -135,7 +135,7 @@ fi
# Install required packages for K8s on host
wget -q -O- 'https://download.ceph.com/keys/release.asc' | sudo apt-key add -
RELEASE_NAME=$(grep 'CODENAME' /etc/lsb-release | awk -F= '{print $2}')
sudo add-apt-repository "deb https://download.ceph.com/debian-reef/
sudo add-apt-repository "deb https://download.ceph.com/debian-18.2.1/
${RELEASE_NAME} main"
sudo -E apt-get update