Upgraded to Kube 1.23
Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
parent
e18f77caaa
commit
3ae4e1142f
14
Makefile
14
Makefile
@ -47,19 +47,7 @@ ci:
|
|||||||
|
|
||||||
.PHONY: release # Release the latest version of the application
|
.PHONY: release # Release the latest version of the application
|
||||||
release:
|
release:
|
||||||
@cd terraform && terraform apply -auto-approve && \
|
@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 ./
|
|
||||||
|
|
||||||
.PHONY: help # Show this list of commands
|
.PHONY: help # Show this list of commands
|
||||||
help:
|
help:
|
||||||
|
@ -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"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,14 +1,13 @@
|
|||||||
resource "scaleway_k8s_cluster_beta" "k8s-cluster" {
|
resource "scaleway_k8s_cluster_beta" "k8s-cluster" {
|
||||||
name = "cluster-fun"
|
name = "cluster-fun"
|
||||||
description = ""
|
description = ""
|
||||||
version = "1.22.2"
|
version = "1.23.0"
|
||||||
cni = "weave"
|
cni = "weave"
|
||||||
enable_dashboard = false
|
enable_dashboard = false
|
||||||
ingress = "nginx"
|
ingress = "nginx"
|
||||||
|
|
||||||
feature_gates = [
|
feature_gates = [
|
||||||
"HPAScaleToZero",
|
"HPAScaleToZero"
|
||||||
"TTLAfterFinished"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user