move image to values

This commit is contained in:
2024-06-13 10:56:49 -05:00
parent d075a47f03
commit 6b850205ad
2 changed files with 7 additions and 3 deletions

View File

@@ -12,9 +12,9 @@ controllers:
containers:
main:
image:
repository: cloudflare/cloudflared
tag: "2024.5.0"
pullPolicy: IfNotPresent
repository: {{ .Values.image.repository }}
tag: {{ .Values.image.tag }}
pullPolicy: {{ .Values.image.pullPolicy }}
args:
- tunnel
- --protocol

View File

@@ -1,3 +1,7 @@
name: cloudflared
existingSecretName: cloudflared-secret
existingSecretKey: cf-tunnel-token
image:
repository: cloudflare/cloudflared
tag: "2024.5.0"
pullPolicy: IfNotPresent