Use Luminous ceph repository temporarily

This uses the ceph luminous repository temporarily until the
issues seen recently with the mimic repository are sorted out and
addressed

Change-Id: Ic079fd2b3e948f37b9362bb221af45605230b19a
This commit is contained in:
Steve Wilkerson 2019-03-13 11:26:50 -05:00
parent a8fe949612
commit 3a1ad65d2d
2 changed files with 4 additions and 2 deletions

View File

@ -58,7 +58,9 @@ sudo sed -i '/^::1/c\::1 localhost6 localhost6.localdomain6' /etc/hosts
# Install required packages for K8s on host
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 460F3994
RELEASE_NAME=$(grep 'CODENAME' /etc/lsb-release | awk -F= '{print $2}')
sudo add-apt-repository "deb https://download.ceph.com/debian-mimic/
#NOTE (srwilkers): Use the luminous repository until the issues with the mimic
# repository are sorted out
sudo add-apt-repository "deb https://download.ceph.com/debian-luminous/
${RELEASE_NAME} main"
sudo -E apt-get update
# NOTE(srwilkers): Pin docker version to validated docker version for k8s 1.12.2

View File

@ -23,7 +23,7 @@
- name: ubuntu | ensure community ceph repository exists
when: ansible_distribution == 'Ubuntu'
apt_repository:
repo: "deb https://download.ceph.com/debian-mimic/ {{ ansible_lsb.codename }} main"
repo: "deb https://download.ceph.com/debian-luminous/ {{ ansible_lsb.codename }} main"
state: present
update_cache: yes