From 052554ddf170d1adb2a25b9ddc37b21b009765dc Mon Sep 17 00:00:00 2001 From: Max Pfeiffer Date: Sun, 9 Nov 2025 08:57:19 +0100 Subject: [PATCH] Updated ArgoCD and docs --- README.md | 5 +++-- kubernetes/helm_releases.tf | 2 +- kubernetes/variables.tf | 6 +++--- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 50c1def..66270b7 100644 --- a/README.md +++ b/README.md @@ -4,14 +4,15 @@ A turnkey Kubernetes cluster built with [Talos Linux](https://www.talos.dev/) ru Provisioning is done with [OpenTofu](https://opentofu.org/). Kubernetes cluster features: +* Kubernetes v1.34.1 * no kube-proxy -* [Cilium](https://cilium.io/) as Container Network Interface (CNI) +* [Cilium v1.18.3](https://cilium.io/) as Container Network Interface (CNI) * without kube-proxy * with [L2 loadbalancer support](https://docs.cilium.io/en/stable/network/l2-announcements/) * with [Ingress controller support](https://docs.cilium.io/en/stable/network/servicemesh/ingress/) * with [Gateway API support](https://docs.cilium.io/en/stable/network/servicemesh/gateway-api/gateway-api/) * with [Egress gateway support](https://docs.cilium.io/en/stable/network/egress-gateway/egress-gateway/) -* [Gateway API](https://gateway-api.sigs.k8s.io/) CRDs are installed +* [Gateway API v1.3.0](https://gateway-api.sigs.k8s.io/) CRDs are installed ## Requirements You need to have installed on your local machine: diff --git a/kubernetes/helm_releases.tf b/kubernetes/helm_releases.tf index 8be2152..262bf23 100644 --- a/kubernetes/helm_releases.tf +++ b/kubernetes/helm_releases.tf @@ -3,7 +3,7 @@ resource "helm_release" "argocd" { namespace = "argocd" create_namespace = true chart = "argo-cd" - version = "8.3.1" + version = "9.1.0" repository = "https://argoproj.github.io/argo-helm" timeout = 120 set = [ diff --git a/kubernetes/variables.tf b/kubernetes/variables.tf index 34bd677..2e297dd 100644 --- a/kubernetes/variables.tf +++ b/kubernetes/variables.tf @@ -9,14 +9,14 @@ variable "Kubernetes_config_context" { } variable "cilium_load_balancer_ip_range_start" { - type = string + type = string } variable "cilium_load_balancer_ip_range_stop" { - type = string + type = string } variable "argocd_domain" { - type = string + type = string }