File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
8
## 26.0.1+1.29.9
4
9
5
10
- ** UPDATE**
Original file line number Diff line number Diff line change @@ -27,6 +27,11 @@ See full [CHANGELOG.md](https://github.com/githubixx/ansible-role-kubernetes-wor
27
27
28
28
** Recent changes:**
29
29
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
+
30
35
## 26.0.1+1.29.9
31
36
32
37
- ** UPDATE**
Original file line number Diff line number Diff line change 98
98
99
99
- name : Downloading official Kubernetes worker binaries
100
100
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"
103
103
dest : " {{ k8s_worker_bin_dir }}"
104
104
owner : " root"
105
105
group : " root"
You can’t perform that action at this time.
0 commit comments