Compare commits

...

3 Commits

Author SHA1 Message Date
46507aad6c fix: wrong args
All checks were successful
lint-and-test / lint-helm (push) Successful in 12s
release-charts-cloudflared / release (push) Successful in 21s
lint-and-test / chart-testing (push) Successful in 27s
renovate / renovate (push) Successful in 34s
2026-05-08 00:47:04 -05:00
e8ab4c0132 feat: release 3.2.0
All checks were successful
lint-and-test / lint-helm (push) Successful in 17s
release-charts-cloudflared / release (push) Successful in 23s
lint-and-test / chart-testing (push) Successful in 35s
renovate / renovate (push) Successful in 47s
2026-05-07 23:57:28 -05:00
b19e962009 feat: use identifier for service account 2026-05-07 23:57:08 -05:00
3 changed files with 6 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v2 apiVersion: v2
name: cloudflared name: cloudflared
version: 3.1.0 version: 3.2.1
description: Cloudflared Tunnel description: Cloudflared Tunnel
keywords: keywords:
- cloudflare - cloudflare

View File

@@ -1,6 +1,6 @@
# cloudflared # cloudflared
![Version: 3.1.0](https://img.shields.io/badge/Version-3.1.0-informational?style=flat-square) ![AppVersion: 2026.3.0](https://img.shields.io/badge/AppVersion-2026.3.0-informational?style=flat-square) ![Version: 3.2.1](https://img.shields.io/badge/Version-3.2.1-informational?style=flat-square) ![AppVersion: 2026.3.0](https://img.shields.io/badge/AppVersion-2026.3.0-informational?style=flat-square)
Cloudflared Tunnel Cloudflared Tunnel

View File

@@ -4,14 +4,14 @@
global: global:
nameOverride: {{ include "cloudflared.name" . }} nameOverride: {{ include "cloudflared.name" . }}
fullNameOverride: {{ include "cloudflared.name" . }} fullNameOverride: {{ include "cloudflared.name" . }}
createDefaultServiceAccount: false createDefaultServiceAccount: true
controllers: controllers:
main: main:
type: deployment type: deployment
replicas: 1 replicas: 1
strategy: Recreate strategy: Recreate
serviceAccount: serviceAccount:
name: {{ include "cloudflared.name" . }} identifier: {{ .Release.Name }}
containers: containers:
main: main:
image: image:
@@ -24,7 +24,8 @@ controllers:
- {{ .Values.protocol }} - {{ .Values.protocol }}
- --no-autoupdate - --no-autoupdate
{{- if .Values.metrics.enabled }} {{- if .Values.metrics.enabled }}
- --metrics 0.0.0.0:20241 - --metrics
- 0.0.0.0:20241
{{- end }} {{- end }}
- run - run
- --token - --token
@@ -39,10 +40,6 @@ controllers:
{{- with .Values.resources }} {{- with .Values.resources }}
{{- toYaml . | nindent 10 }} {{- toYaml . | nindent 10 }}
{{ end }} {{ end }}
serviceAccount:
main:
enabled: true
forceRename: {{ include "cloudflared.name" . }}
{{- if .Values.metrics.enabled }} {{- if .Values.metrics.enabled }}
service: service:
main: main: