Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -555,10 +555,10 @@ workflows:
requires:
- plan_dev_cluster
- codacy/microk8s_install:
name: install_k8s-1.26_helm-3.9_unstable
name: install_k8s-1.27_helm-3.9_unstable
helm_repo: "https://charts.codacy.com/unstable"
chart_version: $(cat .version)
microk8s_channel: "1.26/stable"
microk8s_channel: "1.27/stable"
helm_version: "v3.9.0"
helm_timeout: 1200
context: CodacyDocker
Expand Down Expand Up @@ -767,6 +767,20 @@ workflows:
requires:
- helm_push_incubator

- codacy/microk8s_install:
name: install_k8s-1.27_helm-3.9
helm_repo: "https://charts.codacy.com/incubator"
chart_version: $(cat .version)
microk8s_channel: "1.27/stable"
helm_version: "v3.9.0"
helm_timeout: 1200
context: CodacyDocker
docker_username: $DOCKER_USER
docker_password: $DOCKER_PASS
<<: *helm_values
requires:
- helm_push_incubator

- test_api:
context: CodacyAWS
requires:
Expand Down Expand Up @@ -808,6 +822,7 @@ workflows:
- install_k8s-1.24_helm-3.9
- install_k8s-1.25_helm-3.9
- install_k8s-1.26_helm-3.9
- install_k8s-1.27_helm-3.9
- manual_solutions_eng_hold:
type: approval
context: CodacyDO
Expand All @@ -824,6 +839,7 @@ workflows:
- install_k8s-1.24_helm-3.9
- install_k8s-1.25_helm-3.9
- install_k8s-1.26_helm-3.9
- install_k8s-1.27_helm-3.9
- set_chart_version_release:
context: CodacyDO
requires:
Expand Down
4 changes: 2 additions & 2 deletions .do/k8s-cluster/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ TF ?= $(TF_EXTRA_OPTS) terraform
WORKSPACE ?= ${DO_TF_WORKSPACE}
VARS_FILE ?= deploy.tfvars
NGINX_INGRESS_VERSION ?= 4.8.3
CERT_MANAGER_VERSION ?= v1.9.1
K8S_VERSION ?= 1.26
CERT_MANAGER_VERSION ?= v1.12.9
K8S_VERSION ?= 1.27
DO_K8S_SLUG ?= $(shell doctl kubernetes options versions | grep $(K8S_VERSION) | awk '{print $$1}')
NODE_TYPE ?= s-8vcpu-32gb
NODES_MIN ?= 1
Expand Down