Updated ArgoCD and docs

This commit is contained in:
Max Pfeiffer
2025-11-09 08:57:19 +01:00
parent 6a5c87b263
commit 052554ddf1
3 changed files with 7 additions and 6 deletions

View File

@@ -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/). Provisioning is done with [OpenTofu](https://opentofu.org/).
Kubernetes cluster features: Kubernetes cluster features:
* Kubernetes v1.34.1
* no kube-proxy * 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 * without kube-proxy
* with [L2 loadbalancer support](https://docs.cilium.io/en/stable/network/l2-announcements/) * 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 [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 [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/) * 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 ## Requirements
You need to have installed on your local machine: You need to have installed on your local machine:

View File

@@ -3,7 +3,7 @@ resource "helm_release" "argocd" {
namespace = "argocd" namespace = "argocd"
create_namespace = true create_namespace = true
chart = "argo-cd" chart = "argo-cd"
version = "8.3.1" version = "9.1.0"
repository = "https://argoproj.github.io/argo-helm" repository = "https://argoproj.github.io/argo-helm"
timeout = 120 timeout = 120
set = [ set = [

View File

@@ -9,14 +9,14 @@ variable "Kubernetes_config_context" {
} }
variable "cilium_load_balancer_ip_range_start" { variable "cilium_load_balancer_ip_range_start" {
type = string type = string
} }
variable "cilium_load_balancer_ip_range_stop" { variable "cilium_load_balancer_ip_range_stop" {
type = string type = string
} }
variable "argocd_domain" { variable "argocd_domain" {
type = string type = string
} }