Skip to content

Commit 2772e64

Browse files
authored
update k8s_release to 1.29.9 (#64)
1 parent 996c6e7 commit 2772e64

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

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

3+
## 24.0.1+1.29.9
4+
5+
- **UPDATE**
6+
- update `k8s_release` to `1.29.9`
7+
38
## 24.0.0+1.29.4
49

510
- **UPDATE**

README.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This role is used in [Kubernetes the not so hard way with Ansible - Control plan
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 `23.0.0+1.28.5` means this is release `23.0.0` of this role and it's meant to be used with Kubernetes version `1.28.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 `24.0.1+1.29.9` means this is release `24.0.1` of this role and it's meant to be used with Kubernetes version `1.29.9` (but should work with any K8s 1.29.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

@@ -14,6 +14,7 @@ This role requires that you already created some certificates for Kubernetes API
1414

1515
- Ubuntu 20.04 (Focal Fossa)
1616
- Ubuntu 22.04 (Jammy Jellyfish)
17+
- Ubuntu 24.04 (Noble Numbat)
1718

1819
## Changelog
1920

@@ -25,6 +26,11 @@ See full [CHANGELOG.md](https://github.com/githubixx/ansible-role-kubernetes-con
2526

2627
**Recent changes:**
2728

29+
## 24.0.1+1.29.9
30+
31+
- **UPDATE**
32+
- update `k8s_release` to `1.29.9`
33+
2834
## 24.0.0+1.29.4
2935

3036
- **UPDATE**
@@ -84,7 +90,7 @@ See full [CHANGELOG.md](https://github.com/githubixx/ansible-role-kubernetes-con
8490
roles:
8591
- name: githubixx.kubernetes_controller
8692
src: https://github.com/githubixx/ansible-role-kubernetes-controller.git
87-
version: 24.0.1+1.29.4
93+
version: 24.0.1+1.29.9
8894
```
8995
9096
## Role (default) variables
@@ -114,7 +120,7 @@ k8s_ctl_pki_dir: "{{ k8s_ctl_conf_dir }}/pki"
114120
k8s_ctl_bin_dir: "/usr/local/bin"
115121

116122
# The Kubernetes release.
117-
k8s_ctl_release: "1.29.4"
123+
k8s_ctl_release: "1.29.9"
118124

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

defaults/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ k8s_ctl_pki_dir: "{{ k8s_ctl_conf_dir }}/pki"
2323
k8s_ctl_bin_dir: "/usr/local/bin"
2424

2525
# The Kubernetes release.
26-
k8s_ctl_release: "1.29.4"
26+
k8s_ctl_release: "1.29.9"
2727

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

0 commit comments

Comments
 (0)