Skip to content

Commit

Permalink
fix: install pinned cloud-init for only ubuntu 20.04 (#945)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shalin Patel authored and dkoshkin committed Mar 6, 2024
1 parent ce77617 commit 34b5612
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ansible/group_vars/all/defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,5 @@ nvidia_driver_version: "470.82.01"
nvidia_runfile_installer: "NVIDIA-Linux-x86_64-{{ nvidia_driver_version }}.run"
nvidia_runfile_installer_url: "https://download.nvidia.com/XFree86/Linux-x86_64/{{ nvidia_driver_version }}/{{ nvidia_runfile_installer }}"
suse_packagehub_product: PackageHub/{{ ansible_distribution_version }}/{{ ansible_architecture }}

pinned_debs: []
13 changes: 13 additions & 0 deletions ansible/roles/packages/tasks/debian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,19 @@
retries: 3
delay: 3

- name: install pinned debs
apt:
force_apt_get: True
name: "{{ item }}"
state: present
force: yes
register: apt_lock_status
until: apt_lock_status is not failed
retries: 5
delay: 10
with_items: "{{ pinned_debs }}"
when: ansible_os_family == "Debian"

- name: remove version hold for kubelet and kubectl packages
command: apt-mark unhold {{ item }}
with_items:
Expand Down
5 changes: 5 additions & 0 deletions images/ami/ubuntu-2004.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,8 @@ packer:
build_name: "ubuntu-20"
packer_builder_type: "amazon"
python_path: ""
# The latest cloud-init version '23.3.1-0ubuntu1~20.04.1 is unable to run #boothook created by CAPA
# https://github.com/kubernetes-sigs/cluster-api-provider-aws/blob/0bf78b04b305a77aec37a68c107102231faa7a16/pkg/cloud/services/secretsmanager/secret_fetch_script.go#L20
# This is a workaround to downgrade to older cloud-init version.
# TODO: remove it when base ubuntu AMI has fixed version of cloud-init available. https://d2iq.atlassian.net/browse/D2IQ-99637
pinned_debs: ["cloud-init=23.1.2-0ubuntu0~20.04.2"]

0 comments on commit 34b5612

Please sign in to comment.