Update Kubernetes version to 1.25, see what happens.

This commit is contained in:
Jeff Geerling 2022-09-14 13:18:35 -05:00
parent a2e8d913e7
commit 3949ed1e6d
4 changed files with 8 additions and 6 deletions

View File

@ -43,7 +43,7 @@ jobs:
include: include:
- distro: rockylinux8 - distro: rockylinux8
playbook: converge.yml playbook: converge.yml
- distro: ubuntu2004 - distro: ubuntu2204
playbook: converge.yml playbook: converge.yml
- distro: debian11 - distro: debian11
playbook: converge.yml playbook: converge.yml

View File

@ -27,8 +27,8 @@ kubernetes_packages:
Kubernetes packages to be installed on the server. You can either provide a list of package names, or set `name` and `state` to have more control over whether the package is `present`, `absent`, `latest`, etc. Kubernetes packages to be installed on the server. You can either provide a list of package names, or set `name` and `state` to have more control over whether the package is `present`, `absent`, `latest`, etc.
```yaml ```yaml
kubernetes_version: '1.20' kubernetes_version: '1.25'
kubernetes_version_rhel_package: '1.20.4' kubernetes_version_rhel_package: '1.25.0'
``` ```
The minor version of Kubernetes to install. The plain `kubernetes_version` is used to pin an apt package version on Debian, and as the Kubernetes version passed into the `kubeadm init` command (see `kubernetes_version_kubeadm`). The `kubernetes_version_rhel_package` variable must be a specific Kubernetes release, and is used to pin the version on Red Hat / CentOS servers. The minor version of Kubernetes to install. The plain `kubernetes_version` is used to pin an apt package version on Debian, and as the Kubernetes version passed into the `kubeadm init` command (see `kubernetes_version_kubeadm`). The `kubernetes_version_rhel_package` variable must be a specific Kubernetes release, and is used to pin the version on Red Hat / CentOS servers.

View File

@ -9,8 +9,8 @@ kubernetes_packages:
- name: kubernetes-cni - name: kubernetes-cni
state: present state: present
kubernetes_version: '1.20' kubernetes_version: '1.25'
kubernetes_version_rhel_package: '1.20.4' kubernetes_version_rhel_package: '1.25.0'
kubernetes_role: master kubernetes_role: master

View File

@ -7,12 +7,13 @@ galaxy_info:
description: Kubernetes for Linux. description: Kubernetes for Linux.
company: "Midwestern Mac, LLC" company: "Midwestern Mac, LLC"
license: "license (BSD, MIT)" license: "license (BSD, MIT)"
min_ansible_version: 2.4 min_ansible_version: 2.10
platforms: platforms:
- name: EL - name: EL
versions: versions:
- 7 - 7
- 8 - 8
- 9
- name: Debian - name: Debian
versions: versions:
- stretch - stretch
@ -23,6 +24,7 @@ galaxy_info:
- xenial - xenial
- bionic - bionic
- focal - focal
- jammy
galaxy_tags: galaxy_tags:
- system - system
- containers - containers