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

fix: force redownload of Kubelet and kubectl binaries for Flatcar #889

Merged
merged 1 commit into from
Aug 31, 2023
Merged
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
3 changes: 2 additions & 1 deletion ansible/roles/packages/tasks/url.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
checksum: "{{ kubernetes_cni_http_checksum }}"
dest: /tmp/cni.tar.gz
mode: 0755
force: true
owner: root
group: root
force: true

- name: Install CNI
unarchive:
Expand All @@ -57,6 +57,7 @@
mode: 0755
owner: root
group: root
force: true
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

very interesting catch for preprovisioned case. I think we have to scan the KIB code to make sure we fix similar issues with other binaries.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep I looked at that, this PR was actually a followup to https://d2iq.atlassian.net/browse/D2IQ-95908, we just missed it the first time :(

loop: "{{ kubernetes_bins }}"

- name: Create Kubernetes manifests directory
Expand Down
Loading