From b62b6cf409dc5b0c54b13e48f767d7bf8d52e3b4 Mon Sep 17 00:00:00 2001 From: Jesper Ekhall Date: Mon, 5 Feb 2024 16:22:17 +0100 Subject: [PATCH] Use 1.29.1 of Kubernetes. --- .semaphore/semaphore.yml | 2 +- README.md | 2 +- tests/conftest.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.semaphore/semaphore.yml b/.semaphore/semaphore.yml index 2f5e843d..2edb9955 100644 --- a/.semaphore/semaphore.yml +++ b/.semaphore/semaphore.yml @@ -69,7 +69,7 @@ blocks: - v1.26.6 - v1.27.3 - v1.28.0 - - v1.29.0 + - v1.29.1 promotions: - name: Push container image pipeline_file: push-container-image.yml diff --git a/README.md b/README.md index 4e03f6ad..22d4defa 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ To run fiaas-deploy-daemon locally and connect it to a local cluster, do the fol With kind: * (See https://kind.sigs.k8s.io/docs/user/quick-start/#installation for how to install and configure kind) -* Start kind: `$ kind create cluster --image kindest/node:v1.29.0` +* Start kind: `$ kind create cluster --image kindest/node:v1.29.1` * Run `$ bin/run_fdd_against_kind` With minikube: diff --git a/tests/conftest.py b/tests/conftest.py index 863bccff..5af41e1a 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -195,7 +195,7 @@ def pytest_addoption(parser): parser.addoption( E2E_K8S_VERSION_OPTION, action="store", - default="v1.29.0", + default="v1.29.1", help="Run e2e tests against a kind cluster using this Kubernetes version", )