Skip to content

Commit b7a9950

Browse files
committed
Update comments to point to versions in Config.groovy
After they moved there from ApplicationConfigurator in #241
1 parent 431f546 commit b7a9950

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ FROM alpine AS downloader
4242
RUN apk add curl grep
4343
# When updating,
4444
# * 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
4646
# When upgrading to 1.26 we can verify the kubectl signature with cosign!
4747
# https://kubernetes.io/blog/2022/12/12/kubernetes-release-artifact-signing/
4848
ARG K8S_VERSION=1.29.8

docs/developers.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ repository so need to be upgraded regularly.
229229
* Kubernetes [in Terraform](../terraform/vars.tf) and locally [k3d](../scripts/init-cluster.sh),
230230
* [k3d](../scripts/init-cluster.sh)
231231
* [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)
233233
* Jenkins
234234
* Helm Chart
235235
* Plugins
@@ -240,9 +240,10 @@ repository so need to be upgraded regularly.
240240
* SCM-Manager Helm Chart + Plugins
241241
* Docker Registry Helm Chart
242242
* 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
246247
* Mailhog
247248
* Applications
248249
* GitOps-build-lib + `buildImages`

scripts/init-cluster.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# See https://github.com/rancher/k3d/releases
44
# This variable is also read in Jenkinsfile
55
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
77
K8S_VERSION=1.29.8
88
K3S_VERSION="rancher/k3s:v${K8S_VERSION}-k3s1"
99

terraform/vars.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ variable "k8s_version_prefix" {
3434
# So we use a version prefix hoping that the stable patch versions won't do unexpected things (which is unlikely!)
3535
description = "Master and Node version prefix to setup"
3636

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
3838
default = "1.29."
3939
}
4040

0 commit comments

Comments
 (0)