From dd11ed219728000555ef1e09647ce6016e6cf72c Mon Sep 17 00:00:00 2001 From: Jonas Forsberg Date: Sat, 19 Oct 2024 11:09:04 +0200 Subject: [PATCH] fixed default varable --- README.md | 2 +- values.yaml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b4d5aac..1e6f130 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ The following table lists the configurable parameters of the Lib chart and their | `autoscaling.targetCPUUtilizationPercentage` | | `80` | | `secrets` | Secrets that needs to be created | `{}` | | `configs` | ConfigMaps that needs to be created | `{}` | -| `env.TZ` | | `"Europe/Stockholm"` | +| `env` | environment variables the controller should have | `[{"name": "TZ", "value": "Europe/Stockholm"}]` | | `volumes` | | `[]` | | `volumeMounts` | | `[]` | | `volumeClaimTemplates` | used for statefulset https://kubernetes.io/docs/concepts/workloads/controllers/statefulset | `[]` | diff --git a/values.yaml b/values.yaml index 70eed94..9eaf758 100644 --- a/values.yaml +++ b/values.yaml @@ -99,7 +99,8 @@ configs: {} # ConfigMaps that needs to be created # KEY: VALUE env: # environment variables the controller should have - TZ: Europe/Stockholm + - name: TZ + value: Europe/Stockholm # Additional volumes on the output Deployment definition. volumes: [] # - name: foo