Skip to content

Commit

Permalink
Update comments to point to versions in Config.groovy
Browse files Browse the repository at this point in the history
After they moved there from ApplicationConfigurator in #241
  • Loading branch information
schnatterer committed Dec 19, 2024
1 parent 4bf7fb0 commit d69d241
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ FROM alpine AS downloader
RUN apk add curl grep
# When updating,
# * also update the checksum found at https://dl.k8s.io/release/v${K8S_VERSION}/bin/linux/amd64/kubectl.sha256
# * also update in init-cluster.sh. vars.tf, ApplicationConfigurator.groovy and apply.sh
# * also update in init-cluster.sh. vars.tf, Config.groovy and apply.sh
# When upgrading to 1.26 we can verify the kubectl signature with cosign!
# https://kubernetes.io/blog/2022/12/12/kubernetes-release-artifact-signing/
ARG K8S_VERSION=1.29.8
Expand Down
9 changes: 5 additions & 4 deletions docs/developers.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ repository so need to be upgraded regularly.
* Kubernetes [in Terraform](../terraform/vars.tf) and locally [k3d](../scripts/init-cluster.sh),
* [k3d](../scripts/init-cluster.sh)
* [Groovy libs](../pom.xml) + [Maven](../.mvn/wrapper/maven-wrapper.properties)
* Installed components
* Installed components, most versions are maintained in [Config.groovy](../src/main/groovy/com/cloudogu/gitops/config/Config.groovy)
* Jenkins
* Helm Chart
* Plugins
Expand All @@ -232,9 +232,10 @@ repository so need to be upgraded regularly.
* SCM-Manager Helm Chart + Plugins
* Docker Registry Helm Chart
* ArgoCD Helm Chart
* Grafana + Prometheus [Helm Charts](../src/main/groovy/com/cloudogu/gitops/ApplicationConfigurator.groovy)
* Vault + ExternalSerets Operator [Helm Charts](../src/main/groovy/com/cloudogu/gitops/ApplicationConfigurator.groovy)
* Ingress-nginx [Helm Charts](https://artifacthub.io/packages/helm/ingress-nginx/ingress-nginx)
* Grafana + Prometheus Helm Charts
* Vault + ExternalSerets Operator Helm Charts
* Ingress-nginx Helm Charts
* Cert-Manager
* Mailhog
* Applications
* GitOps-build-lib + `buildImages`
Expand Down
2 changes: 1 addition & 1 deletion scripts/init-cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# See https://github.com/rancher/k3d/releases
# This variable is also read in Jenkinsfile
K3D_VERSION=5.7.4
# When updating please also adapt in Dockerfile, vars.tf and ApplicationConfigurator.groovy
# When updating please also adapt in Dockerfile, vars.tf and Config.groovy
K8S_VERSION=1.29.8
K3S_VERSION="rancher/k3s:v${K8S_VERSION}-k3s1"

Expand Down
2 changes: 1 addition & 1 deletion terraform/vars.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ variable "k8s_version_prefix" {
# So we use a version prefix hoping that the stable patch versions won't do unexpected things (which is unlikely!)
description = "Master and Node version prefix to setup"

# When updating please also adapt in Dockerfile, init-cluster.sh and ApplicationConfigurator.groovy
# When updating please also adapt in Dockerfile, init-cluster.sh and Config.groovy
default = "1.29."
}

Expand Down

0 comments on commit d69d241

Please sign in to comment.