File tree 4 files changed +8
-7
lines changed
4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ FROM alpine AS downloader
42
42
RUN apk add curl grep
43
43
# When updating,
44
44
# * also update the checksum found at https://dl.k8s.io/release/v${K8S_VERSION}/bin/linux/amd64/kubectl.sha256
45
- # * also update in init-cluster.sh. vars.tf, ApplicationConfigurator .groovy and apply.sh
45
+ # * also update in init-cluster.sh. vars.tf, Config .groovy and apply.sh
46
46
# When upgrading to 1.26 we can verify the kubectl signature with cosign!
47
47
# https://kubernetes.io/blog/2022/12/12/kubernetes-release-artifact-signing/
48
48
ARG K8S_VERSION=1.29.8
Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ repository so need to be upgraded regularly.
229
229
* Kubernetes [in Terraform](../terraform/vars.tf) and locally [k3d](../scripts/init-cluster.sh),
230
230
* [k3d](../scripts/init-cluster.sh)
231
231
* [Groovy libs](../pom.xml) + [Maven](../.mvn/wrapper/maven-wrapper.properties)
232
- * Installed components
232
+ * Installed components, most versions are maintained in [Config.groovy](../src/main/groovy/com/cloudogu/gitops/config/Config.groovy)
233
233
* Jenkins
234
234
* Helm Chart
235
235
* Plugins
@@ -240,9 +240,10 @@ repository so need to be upgraded regularly.
240
240
* SCM-Manager Helm Chart + Plugins
241
241
* Docker Registry Helm Chart
242
242
* ArgoCD Helm Chart
243
- * Grafana + Prometheus [Helm Charts](../src/main/groovy/com/cloudogu/gitops/ApplicationConfigurator.groovy)
244
- * Vault + ExternalSerets Operator [Helm Charts](../src/main/groovy/com/cloudogu/gitops/ApplicationConfigurator.groovy)
245
- * Ingress-nginx [Helm Charts](https://artifacthub.io/packages/helm/ingress-nginx/ingress-nginx)
243
+ * Grafana + Prometheus Helm Charts
244
+ * Vault + ExternalSerets Operator Helm Charts
245
+ * Ingress-nginx Helm Charts
246
+ * Cert-Manager
246
247
* Mailhog
247
248
* Applications
248
249
* GitOps-build-lib + `buildImages`
Original file line number Diff line number Diff line change 3
3
# See https://github.com/rancher/k3d/releases
4
4
# This variable is also read in Jenkinsfile
5
5
K3D_VERSION=5.7.4
6
- # When updating please also adapt in Dockerfile, vars.tf and ApplicationConfigurator .groovy
6
+ # When updating please also adapt in Dockerfile, vars.tf and Config .groovy
7
7
K8S_VERSION=1.29.8
8
8
K3S_VERSION=" rancher/k3s:v${K8S_VERSION} -k3s1"
9
9
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ variable "k8s_version_prefix" {
34
34
# So we use a version prefix hoping that the stable patch versions won't do unexpected things (which is unlikely!)
35
35
description = " Master and Node version prefix to setup"
36
36
37
- # When updating please also adapt in Dockerfile, init-cluster.sh and ApplicationConfigurator .groovy
37
+ # When updating please also adapt in Dockerfile, init-cluster.sh and Config .groovy
38
38
default = " 1.29."
39
39
}
40
40
You can’t perform that action at this time.
0 commit comments