Skip to content

Commit b296a50

Browse files
bump: Kubernetes to version 1.29 (#812)
1 parent 8b94c9c commit b296a50

File tree

3 files changed

+22
-6
lines changed

3 files changed

+22
-6
lines changed

.circleci/config.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -557,10 +557,10 @@ workflows:
557557
requires:
558558
- plan_dev_cluster
559559
- codacy/microk8s_install:
560-
name: install_k8s-1.28_helm-3.9_unstable
560+
name: install_k8s-1.29_helm-3.9_unstable
561561
helm_repo: "https://charts.codacy.com/unstable"
562562
chart_version: $(cat .version)
563-
microk8s_channel: "1.28/stable"
563+
microk8s_channel: "1.29/stable"
564564
helm_version: "v3.9.0"
565565
helm_timeout: 1200
566566
context: CodacyDocker
@@ -797,6 +797,20 @@ workflows:
797797
requires:
798798
- helm_push_incubator
799799

800+
- codacy/microk8s_install:
801+
name: install_k8s-1.29_helm-3.9
802+
helm_repo: "https://charts.codacy.com/incubator"
803+
chart_version: $(cat .version)
804+
microk8s_channel: "1.29/stable"
805+
helm_version: "v3.9.0"
806+
helm_timeout: 1200
807+
context: CodacyDocker
808+
docker_username: $DOCKER_USER
809+
docker_password: $DOCKER_PASS
810+
<<: *helm_values
811+
requires:
812+
- helm_push_incubator
813+
800814
- test_api:
801815
context: CodacyAWS
802816
requires:
@@ -840,6 +854,7 @@ workflows:
840854
- install_k8s-1.26_helm-3.9
841855
- install_k8s-1.27_helm-3.9
842856
- install_k8s-1.28_helm-3.9
857+
- install_k8s-1.29_helm-3.9
843858
- manual_solutions_eng_hold:
844859
type: approval
845860
context: CodacyDO
@@ -858,6 +873,7 @@ workflows:
858873
- install_k8s-1.26_helm-3.9
859874
- install_k8s-1.27_helm-3.9
860875
- install_k8s-1.28_helm-3.9
876+
- install_k8s-1.29_helm-3.9
861877
- set_chart_version_release:
862878
context: CodacyDO
863879
requires:

.do/k8s-cluster/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ TF_PARALLELISM ?= 30
55
TF ?= $(TF_EXTRA_OPTS) terraform
66
WORKSPACE ?= ${DO_TF_WORKSPACE}
77
VARS_FILE ?= deploy.tfvars
8-
NGINX_INGRESS_VERSION ?= 4.8.3
8+
NGINX_INGRESS_VERSION ?= 4.11.3
99
CERT_MANAGER_VERSION ?= v1.15.0
10-
K8S_VERSION ?= 1.28
10+
K8S_VERSION ?= 1.29
1111
DO_K8S_SLUG ?= $(shell doctl kubernetes options versions | grep $(K8S_VERSION) | awk '{print $$1}')
1212
NODE_TYPE ?= s-8vcpu-32gb
1313
NODES_MIN ?= 1
1414
NODES_MAX ?= 10
15-
15+
1616
.PHONY: create_terraformrc
1717
create_terraformrc:
1818
@echo -e "credentials \"app.terraform.io\" { \n token = \"$$TF_AUTH_TOKEN\" \n}" > $(TF_RC)

.do/k8s-cluster/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
variable "k8s_version" {
66
description = "Kubernetes version. See available versions with `doctl kubernetes options versions`"
77
type = string
8-
default = "1.25.8-do.0"
8+
default = "1.29.9-do.4"
99
}
1010

1111
variable "k8s_kubeconfig" {

0 commit comments

Comments
 (0)