From ff6cd4caf34f4e3951852b6e308b1f86c03cf8d8 Mon Sep 17 00:00:00 2001 From: Peter Muriuki Date: Mon, 30 Jun 2025 18:47:35 +0300 Subject: [PATCH 1/3] fix(cloudflared): update path for the checksum objects --- charts/cloudflared/templates/deployment.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/cloudflared/templates/deployment.yaml b/charts/cloudflared/templates/deployment.yaml index 1b58df9..20acbd7 100644 --- a/charts/cloudflared/templates/deployment.yaml +++ b/charts/cloudflared/templates/deployment.yaml @@ -17,9 +17,9 @@ spec: {{- if .Values.local.enabled }} annotations: checksum/tunnel-id: {{ sha256sum .Values.local.auth.tunnelID }} - checksum/ingress: {{ .Values.ingress | toJson | sha256sum }} - checksum/auth: {{ .Values.auth | toJson | sha256sum }} - checksum/warp-routing: {{ .Values.warpRouting | toJson | sha256sum }} + checksum/ingress: {{ .Values.local.ingress | toJson | sha256sum }} + checksum/auth: {{ .Values.local.auth | toJson | sha256sum }} + checksum/warp-routing: {{ .Values.local.warpRouting | toJson | sha256sum }} {{- end }} spec: containers: From 6dd65cec6402aa5115e7f8813d0564989a49fa7d Mon Sep 17 00:00:00 2001 From: Peter Muriuki Date: Mon, 30 Jun 2025 18:53:52 +0300 Subject: [PATCH 2/3] bump version --- charts/cloudflared/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/cloudflared/Chart.yaml b/charts/cloudflared/Chart.yaml index 2dfdc52..4333c89 100644 --- a/charts/cloudflared/Chart.yaml +++ b/charts/cloudflared/Chart.yaml @@ -4,7 +4,7 @@ maintainers: url: https://kubito.dev apiVersion: v2 appVersion: 2025.5.0 -version: 1.7.1 +version: 1.7.2 description: Kubito Cloudflared (Argo Tunnel) Helm Chart home: https://github.com/kubitodev/helm/tree/main/charts/cloudflared icon: https://kubito.dev/images/kubito.svg From c52f7894da43ad136a21a9b66bd325f3cc1fa082 Mon Sep 17 00:00:00 2001 From: Peter Muriuki Date: Wed, 23 Jul 2025 22:55:15 +0300 Subject: [PATCH 3/3] fix log level configuration --- charts/cloudflared/templates/deployment.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/cloudflared/templates/deployment.yaml b/charts/cloudflared/templates/deployment.yaml index 20acbd7..2e1e61c 100644 --- a/charts/cloudflared/templates/deployment.yaml +++ b/charts/cloudflared/templates/deployment.yaml @@ -30,15 +30,15 @@ spec: - --metrics - "0.0.0.0:{{ .Values.metrics.port }}" {{ end }} + {{- if .Values.logLevel }} + - --loglevel + - {{ .Values.logLevel }} + {{- end }} {{- if .Values.local.enabled }} - --config - /etc/cloudflared/config.yaml - run {{- else if .Values.managed.enabled }} - {{- if .Values.logLevel }} - - --loglevel - - {{ .Values.logLevel }} - {{- end }} - run - --token - $(CF_MANAGED_TUNNEL_TOKEN)