Skip to content

Commit 97b7f20

Browse files
authored
26.0.0+1.31.5 (#72)
* fix typo * update .gitignore * update k8s_ctl_release to 1.31.5
1 parent 84da08a commit 97b7f20

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

CHANGELOG.md

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

3+
## 26.0.0+1.31.5
4+
5+
- **UPDATE**
6+
- update `k8s_ctl_release` to `1.31.5`
7+
38
## 25.0.1+1.30.9
49

510
- **UPDATE**

README.md

+9-4
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 `25.0.1+1.30.9` means this is release `25.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.
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 `26.0.0+1.31.5` means this is release `26.0.0` of this role and it's meant to be used with Kubernetes version `1.31.5` (but should work with any K8s 1.31.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

@@ -16,7 +16,7 @@ And of course an [etcd](https://etcd.io/) cluster (see [Kubernetes the not so ha
1616

1717
## Supported OS
1818

19-
- Ubuntu 20.04 (Focal Fossa) (reaches EOL April 2024 - not recommended)
19+
- Ubuntu 20.04 (Focal Fossa) (reaches EOL April 2025 - not recommended)
2020
- Ubuntu 22.04 (Jammy Jellyfish)
2121
- Ubuntu 24.04 (Noble Numbat) (recommended)
2222

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

3131
**Recent changes:**
3232

33+
## 26.0.0+1.31.5
34+
35+
- **UPDATE**
36+
- update `k8s_ctl_release` to `1.31.5`
37+
3338
## 25.0.1+1.30.9
3439

3540
- **UPDATE**
@@ -70,7 +75,7 @@ See full [CHANGELOG.md](https://github.com/githubixx/ansible-role-kubernetes-con
7075
roles:
7176
- name: githubixx.kubernetes_controller
7277
src: https://github.com/githubixx/ansible-role-kubernetes-controller.git
73-
version: 25.0.1+1.30.9
78+
version: 26.0.0+1.31.5
7479
```
7580
7681
## Role (default) variables
@@ -100,7 +105,7 @@ k8s_ctl_pki_dir: "{{ k8s_ctl_conf_dir }}/pki"
100105
k8s_ctl_bin_dir: "/usr/local/bin"
101106

102107
# The Kubernetes release.
103-
k8s_ctl_release: "1.30.9"
108+
k8s_ctl_release: "1.31.5"
104109

105110
# The interface on which the Kubernetes services should listen on. As all cluster
106111
# 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.30.9"
26+
k8s_ctl_release: "1.31.5"
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)