Skip to content

Commit 6c64108

Browse files
committed
Add kube 1.23 to the test matrix
Signed-off-by: John Strunk <jstrunk@redhat.com>
1 parent 3c0cd6a commit 6c64108

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

.github/workflows/operator.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,8 @@ jobs:
175175
- "1.19.11" # OCP 4.6
176176
- "1.20.7" # OCP 4.7
177177
- "1.21.2" # OCP 4.8
178-
- "1.22.2" # OCP 4.9
178+
- "1.22.4" # OCP 4.9
179+
- "1.23.3"
179180
env:
180181
KUBECONFIG: /tmp/kubeconfig
181182
KUBERNETES_VERSION: ${{ matrix.KUBERNETES_VERSIONS }}

Procedures.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,16 @@
4444
* [Helm](https://github.com/helm/helm/releases)
4545
* Change the version number in [Makefile](Makefile)
4646
* [Kind](https://github.com/kubernetes-sigs/kind/releases)
47-
* Change the version number in [operator.yml](.github/workflows/operator.yml)
47+
* Kind version: Change the version number in
48+
[operator.yml](.github/workflows/operator.yml)
49+
* Kubernetes version used by kind:
50+
* [Available kubernetes
51+
versions](https://hub.docker.com/r/kindest/node/tags?page=1&ordering=last_updated)
52+
* Update the default kube version in the
53+
[setup-kind-cluster.sh](./hack/setup-kind-cluster.sh) script to be the
54+
latest image
55+
* Update the matrix list for CI in
56+
[operator.yml](.github/workflows/operator.yml)
4857
* [Kuttl](https://github.com/kudobuilder/kuttl/releases)
4958
* Change the version number in [Makefile](Makefile)
5059
* [operator-sdk](https://github.com/operator-framework/operator-sdk/releases)

hack/setup-kind-cluster.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e -o pipefail
55
# Possible versions:
66
# https://hub.docker.com/r/kindest/node/tags?page=1&ordering=name
77
# skopeo inspect docker://kindest/node:v1.17.0 | jq .RepoTags
8-
KUBE_VERSION="${1:-1.22.2}"
8+
KUBE_VERSION="${1:-1.23.3}"
99

1010
# Determine the Kube minor version
1111
[[ "${KUBE_VERSION}" =~ ^[0-9]+\.([0-9]+) ]] && KUBE_MINOR="${BASH_REMATCH[1]}" || exit 1

0 commit comments

Comments
 (0)