Skip to content

Commit ceda28b

Browse files
authored
24.0.2+1.29.9 (#65)
* fix download URLs for Kubernetes binaries * update README and CHANGELOG
1 parent 2772e64 commit ceda28b

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 24.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
## 24.0.1+1.29.9
49

510
- **UPDATE**

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ See full [CHANGELOG.md](https://github.com/githubixx/ansible-role-kubernetes-con
2626

2727
**Recent changes:**
2828

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

3136
- **UPDATE**

tasks/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@
154154

155155
- name: Downloading official Kubernetes binaries
156156
ansible.builtin.get_url:
157-
url: "https://storage.googleapis.com/kubernetes-release/release/v{{ k8s_ctl_release }}/bin/linux/amd64/{{ item }}"
158-
checksum: "sha512:https://storage.googleapis.com/kubernetes-release/release/v{{ k8s_ctl_release }}/bin/linux/amd64/{{ item }}.sha512"
157+
url: "https://dl.k8s.io/v{{ k8s_ctl_release }}/bin/linux/amd64/{{ item }}"
158+
checksum: "sha512:https://dl.k8s.io/v{{ k8s_ctl_release }}/bin/linux/amd64/{{ item }}.sha512"
159159
dest: "{{ k8s_ctl_bin_dir }}"
160160
owner: "root"
161161
group: "root"

0 commit comments

Comments
 (0)