From d4c634bbe9ae36f52315870c3819141a9e54217a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20St=C3=A4bler?= Date: Tue, 14 Apr 2026 14:36:57 +0200 Subject: [PATCH] Update manifests of k8s dependencies to latest versions --- hack/create-kind-cluster.sh | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/hack/create-kind-cluster.sh b/hack/create-kind-cluster.sh index 7ade76f..7ff99db 100755 --- a/hack/create-kind-cluster.sh +++ b/hack/create-kind-cluster.sh @@ -12,11 +12,14 @@ NODE_VERSION="v1.34.0" REGISTRY_NAME="kind-registry" REGISTRY_PORT=${REGISTRY_PORT:-"5001"} -SERVING_VERSION="v1.19.0" -EVENTING_VERSION="v1.19.0" -TEKTON_VERSION="v1.6.0" -KEDA_VERSION="v2.17.0" -KEDA_HTTP_ADDON_VERSION="v0.12.1" +SERVING_VERSION="v1.21.0" +EVENTING_VERSION="v1.21.0" +TEKTON_VERSION="v1.11.0" +KEDA_VERSION="v2.19.0" +KEDA_HTTP_ADDON_VERSION="v0.13.0" + +GITEA_USER="giteaadmin" +GITEA_PASS="giteapass" header=$'\e[1;33m' reset=$'\e[0m' @@ -117,7 +120,7 @@ EOF function install_tekton() { header_text "Install Tekton" - kubectl apply -f https://storage.googleapis.com/tekton-releases/pipeline/previous/${TEKTON_VERSION}/release.yaml + kubectl apply -f https://infra.tekton.dev/tekton-releases/pipeline/previous/${TEKTON_VERSION}/release.yaml kubectl patch configmap feature-flags -n tekton-pipelines --type merge -p '{"data":{"coschedule":"disabled"}}' header_text "Waiting for Tekton to be ready..." @@ -174,8 +177,8 @@ function install_gitea() { --set service.http.nodePort=30000 \ --set service.ssh.type=NodePort \ --set service.ssh.nodePort=30022 \ - --set gitea.admin.username=giteaadmin \ - --set gitea.admin.password=giteapass \ + --set gitea.admin.username="${GITEA_USER}" \ + --set gitea.admin.password="${GITEA_PASS}" \ --set gitea.admin.email=admin@gitea.local \ --set persistence.enabled=false \ --set postgresql-ha.enabled=false \