Skip to content

Commit bf160a8

Browse files
authored
26.0.2+1.29.9 (#53)
* fix download URLs for Kubernetes binaries * update README and CHANGELOG
1 parent 98b4554 commit bf160a8

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 26.0.2+1.29.9
4+
5+
- **OTHER CHANGES**
6+
- fix download URLs for Kubernetes binaries (see: [Download Kubernetes - Binaries](https://kubernetes.io/releases/download/#binaries)
7+
38
## 26.0.1+1.29.9
49

510
- **UPDATE**

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ See full [CHANGELOG.md](https://github.com/githubixx/ansible-role-kubernetes-wor
2727

2828
**Recent changes:**
2929

30+
## 26.0.2+1.29.9
31+
32+
- **OTHER CHANGES**
33+
- fix download URLs for Kubernetes binaries (see: [Download Kubernetes - Binaries](https://kubernetes.io/releases/download/#binaries)
34+
3035
## 26.0.1+1.29.9
3136

3237
- **UPDATE**

tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@
9898

9999
- name: Downloading official Kubernetes worker binaries
100100
ansible.builtin.get_url:
101-
url: "https://storage.googleapis.com/kubernetes-release/release/v{{ k8s_worker_release }}/bin/linux/amd64/{{ item }}"
102-
checksum: "sha512:https://storage.googleapis.com/kubernetes-release/release/v{{ k8s_worker_release }}/bin/linux/amd64/{{ item }}.sha512"
101+
url: "https://dl.k8s.io/v{{ k8s_worker_release }}/bin/linux/amd64/{{ item }}"
102+
checksum: "sha512:https://dl.k8s.io/v{{ k8s_worker_release }}/bin/linux/amd64/{{ item }}.sha512"
103103
dest: "{{ k8s_worker_bin_dir }}"
104104
owner: "root"
105105
group: "root"

0 commit comments

Comments
 (0)