added env.TZ default value

This commit is contained in:
Jonas Forsberg
2024-10-18 16:39:39 +02:00
parent f7fd24fe6f
commit 0204cc88db
4 changed files with 9 additions and 4 deletions

5
CHANGES.md Normal file

@@ -0,0 +1,5 @@
# next
- added env.TZ to default to Europe/Stockholm
# v1.0.0
- first version

@@ -3,7 +3,7 @@ apiVersion: v2
name: lib
description: Common functions for my helm charts at home
type: library
version: 1.0.0
version: 1.0.1
kubeVersion: ">=1.27.0"
home: git.rre.nu
sources:

@@ -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` | environment variables the controller should have | `{}` |
| `env.TZ` | | `"Europe/Stockholm"` |
| `volumes` | | `[]` |
| `volumeMounts` | | `[]` |
| `volumeClaimTemplates` | used for statefulset https://kubernetes.io/docs/concepts/workloads/controllers/statefulset | `[]` |

@@ -98,8 +98,8 @@ configs: {} # ConfigMaps that needs to be created
# data:
# KEY: VALUE
env: {} # environment variables the controller should have
env: # environment variables the controller should have
TZ: Europe/Stockholm
# Additional volumes on the output Deployment definition.
volumes: []
# - name: foo