Skip to content

Commit b2dc3c9

Browse files
authored
update k8s_worker_release to 1.30.9 (#55)
1 parent 274d923 commit b2dc3c9

File tree

3 files changed

+14
-17
lines changed

3 files changed

+14
-17
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+
## 27.0.1+1.30.9
4+
5+
- **UPDATE**
6+
- update `k8s_worker_release` to `1.30.9`
7+
38
## 27.0.0+1.30.5
49

510
- **UPDATE**

README.md

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This Ansible role is used in [Kubernetes the not so hard way with Ansible - Work
44

55
## Versions
66

7-
I tag every release and try to stay with [semantic versioning](http://semver.org). If you want to use the role I recommend to checkout the latest tag. The master branch is basically development while the tags mark stable releases. But in general I try to keep master in good shape too. A tag `27.0.0+1.30.5` means this is release `27.0.0` of this role and it's meant to be used with Kubernetes version `1.30.5` (but should work with any K8s 1.27.x release of course). If the role itself changes `X.Y.Z` before `+` will increase. If the Kubernetes version changes `X.Y.Z` after `+` will increase too. This allows to tag bugfixes and new major versions of the role while it's still developed for a specific Kubernetes release. That's especially useful for Kubernetes major releases with breaking changes.
7+
I tag every release and try to stay with [semantic versioning](http://semver.org). If you want to use the role I recommend to checkout the latest tag. The master branch is basically development while the tags mark stable releases. But in general I try to keep master in good shape too. A tag `27.0.1+1.30.9` means this is release `27.0.1` of this role and it's meant to be used with Kubernetes version `1.30.9` (but should work with any K8s 1.30.x release of course). If the role itself changes `X.Y.Z` before `+` will increase. If the Kubernetes version changes `X.Y.Z` after `+` will increase too. This allows to tag bugfixes and new major versions of the role while it's still developed for a specific Kubernetes release. That's especially useful for Kubernetes major releases with breaking changes.
88

99
## Requirements
1010

@@ -28,6 +28,11 @@ See full [CHANGELOG.md](https://github.com/githubixx/ansible-role-kubernetes-wor
2828

2929
**Recent changes:**
3030

31+
## 27.0.1+1.30.9
32+
33+
- **UPDATE**
34+
- update `k8s_worker_release` to `1.30.9`
35+
3136
## 27.0.0+1.30.5
3237

3338
- **UPDATE**
@@ -42,19 +47,6 @@ See full [CHANGELOG.md](https://github.com/githubixx/ansible-role-kubernetes-wor
4247
- **OTHER CHANGES**
4348
- fix download URLs for Kubernetes binaries (see: [Download Kubernetes - Binaries](https://kubernetes.io/releases/download/#binaries)
4449

45-
## 26.0.1+1.29.9
46-
47-
- **UPDATE**
48-
- update `k8s_release` to `1.29.9`
49-
50-
## 26.0.0+1.29.4
51-
52-
- **UPDATE**
53-
- update `k8s_release` to `1.29.4`
54-
55-
- **MOLECULE**
56-
- use `alvistack` instead of `generic` Vagrant boxes
57-
5850
## Installation
5951

6052
- Directly download from Github (Change into Ansible roles directory before cloning. You can figure out the role path by using `ansible-config dump | grep DEFAULT_ROLES_PATH` command):
@@ -71,7 +63,7 @@ See full [CHANGELOG.md](https://github.com/githubixx/ansible-role-kubernetes-wor
7163
roles:
7264
- name: githubixx.kubernetes_worker
7365
src: https://github.com/githubixx/ansible-role-kubernetes-worker.git
74-
version: 27.0.0+1.30.5
66+
version: 27.0.1+1.30.9
7567
```
7668
7769
## Role Variables
@@ -99,7 +91,7 @@ k8s_worker_pki_dir: "{{ k8s_worker_conf_dir }}/pki"
9991
k8s_worker_bin_dir: "/usr/local/bin"
10092

10193
# K8s release
102-
k8s_worker_release: "1.30.5"
94+
k8s_worker_release: "1.30.9"
10395

10496
# The interface on which the Kubernetes services should listen on. As all cluster
10597
# communication should use a VPN interface the interface name is

defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ k8s_worker_pki_dir: "{{ k8s_worker_conf_dir }}/pki"
2121
k8s_worker_bin_dir: "/usr/local/bin"
2222

2323
# K8s release
24-
k8s_worker_release: "1.30.5"
24+
k8s_worker_release: "1.30.9"
2525

2626
# The interface on which the Kubernetes services should listen on. As all cluster
2727
# communication should use a VPN interface the interface name is

0 commit comments

Comments
 (0)