From 184c09f0b7fc2353fe244ca8d570aa46adb3997d Mon Sep 17 00:00:00 2001 From: kjeld Schouten-Lebbing Date: Mon, 28 Jun 2021 19:36:49 +0200 Subject: [PATCH] Add disabled persistence to traefik --- charts/stable/traefik/Chart.yaml | 2 +- charts/stable/traefik/SCALE/ix_values.yaml | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/charts/stable/traefik/Chart.yaml b/charts/stable/traefik/Chart.yaml index 0acb11f6062..da50b33ed02 100644 --- a/charts/stable/traefik/Chart.yaml +++ b/charts/stable/traefik/Chart.yaml @@ -25,5 +25,5 @@ sources: - https://github.com/traefik/traefik-helm-chart - https://traefik.io/ type: application -version: 6.1.7 +version: 6.1.8 upstream_version: "v9.19.2" diff --git a/charts/stable/traefik/SCALE/ix_values.yaml b/charts/stable/traefik/SCALE/ix_values.yaml index 7bae09f16bc..b8247bf1ca9 100644 --- a/charts/stable/traefik/SCALE/ix_values.yaml +++ b/charts/stable/traefik/SCALE/ix_values.yaml @@ -268,6 +268,19 @@ autoscaling: # name: memory # targetAverageUtilization: 60 +# Enable persistence using Persistent Volume Claims +# ref: http://kubernetes.io/docs/user-guide/persistent-volumes/ +# After the pvc has been mounted, add the configs into traefik by using the `additionalArguments` list below, eg: +# additionalArguments: +# - "--certificatesresolvers.le.acme.storage=/data/acme.json" +# It will persist TLS certificates. +persistence: + enabled: false + name: data + accessMode: ReadWriteOnce + size: 128Mi + path: /data + # Whether Role Based Access Control objects like roles and rolebindings should be created rbac: enabled: true