Upgraded to Kube 1.23

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
Marcus Noble 2021-12-24 09:20:11 +00:00
parent e18f77caaa
commit 3ae4e1142f
Signed by: AverageMarcus
GPG Key ID: B8F2DB8A7AEBAF78
3 changed files with 3 additions and 36 deletions

View File

@ -47,19 +47,7 @@ ci:
.PHONY: release # Release the latest version of the application
release:
@cd terraform && terraform apply -auto-approve && \
kubectx admin@clusterfun-scaleway && \
cd ../tekton && \
kubectl apply -f ./1-Install/ && \
kubectl apply -f ./2-Setup/ && \
kubectl apply -f ./bindings/ && \
kubectl apply -f ./conditions/ && \
kubectl apply -f ./eventlisteners/ && \
kubectl apply -f ./pipelines/ && \
kubectl apply -f ./tasks/ && \
kubectl apply -f ./triggertemplates/ && \
cd ../manifests && \
kubectl apply -f ./
@cd terraform && terraform apply -auto-approve
.PHONY: help # Show this list of commands
help:

View File

@ -1,20 +0,0 @@
resource "helm_release" "helm-operator" {
name = "helm-operator"
repository = "https://charts.fluxcd.io"
chart = "helm-operator"
max_history = 3
set {
name = "helm.versions"
value = "v3"
}
set {
name = "createCRD"
value = "false"
}
}

View File

@ -1,14 +1,13 @@
resource "scaleway_k8s_cluster_beta" "k8s-cluster" {
name = "cluster-fun"
description = ""
version = "1.22.2"
version = "1.23.0"
cni = "weave"
enable_dashboard = false
ingress = "nginx"
feature_gates = [
"HPAScaleToZero",
"TTLAfterFinished"
"HPAScaleToZero"
]
}