From 85cfb4089b0716d9f607d918fb7c5ae4b24eac60 Mon Sep 17 00:00:00 2001 From: William P Date: Fri, 28 Feb 2025 21:12:37 -0500 Subject: [PATCH] fix deployment variables --- system-apps/traefik/values.yaml | 57 +++++++++++++++++---------------- 1 file changed, 29 insertions(+), 28 deletions(-) diff --git a/system-apps/traefik/values.yaml b/system-apps/traefik/values.yaml index c74efe9..34563fa 100644 --- a/system-apps/traefik/values.yaml +++ b/system-apps/traefik/values.yaml @@ -1,32 +1,33 @@ traefik: - additionalContainers: - - name: cloudflared - image: cloudflare/cloudflared:2025.2.1 - args: ["tunnel", "--config", "/etc/cloudflared/config/config.yml", "run"] - livenessProbe: - failureThreshold: 1 - httpGet: - path: /ready - port: 2000 - scheme: HTTP - initialDelaySeconds: 10 - periodSeconds: 10 - successThreshold: 1 - timeoutSeconds: 1 - volumeMounts: - - mountPath: /etc/cloudflared/config - name: cloudflared-config - readOnly: true - - mountPath: /etc/cloudflared/creds - name: cloudflared-creds - readOnly: true - additionalVolumes: - - name: cloudflared-config - configMap: - name: cloudflared-config - - name: cloudflared-creds - secret: - secretName: cloudflare-cred + deployment: + additionalContainers: + - name: cloudflared + image: cloudflare/cloudflared:2025.2.1 + args: ["tunnel", "--config", "/etc/cloudflared/config/config.yml", "run"] + livenessProbe: + failureThreshold: 1 + httpGet: + path: /ready + port: 2000 + scheme: HTTP + initialDelaySeconds: 10 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 1 + volumeMounts: + - mountPath: /etc/cloudflared/config + name: cloudflared-config + readOnly: true + - mountPath: /etc/cloudflared/creds + name: cloudflared-creds + readOnly: true + additionalVolumes: + - name: cloudflared-config + configMap: + name: cloudflared-config + - name: cloudflared-creds + secret: + secretName: cloudflare-cred extraObjects: - apiVersion: external-secrets.io/v1beta1 kind: ExternalSecret