added env.TZ default value
All checks were successful
Lint and Test Charts / lint-test (push) Successful in 7s
All checks were successful
Lint and Test Charts / lint-test (push) Successful in 7s
This commit is contained in:
parent
f7fd24fe6f
commit
0204cc88db
5
CHANGES.md
Normal file
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
|
name: lib
|
||||||
description: Common functions for my helm charts at home
|
description: Common functions for my helm charts at home
|
||||||
type: library
|
type: library
|
||||||
version: 1.0.0
|
version: 1.0.1
|
||||||
kubeVersion: ">=1.27.0"
|
kubeVersion: ">=1.27.0"
|
||||||
home: git.rre.nu
|
home: git.rre.nu
|
||||||
sources:
|
sources:
|
||||||
|
@ -45,7 +45,7 @@ The following table lists the configurable parameters of the Lib chart and their
|
|||||||
| `autoscaling.targetCPUUtilizationPercentage` | | `80` |
|
| `autoscaling.targetCPUUtilizationPercentage` | | `80` |
|
||||||
| `secrets` | Secrets that needs to be created | `{}` |
|
| `secrets` | Secrets that needs to be created | `{}` |
|
||||||
| `configs` | ConfigMaps that needs to be created | `{}` |
|
| `configs` | ConfigMaps that needs to be created | `{}` |
|
||||||
| `env` | environment variables the controller should have | `{}` |
|
| `env.TZ` | | `"Europe/Stockholm"` |
|
||||||
| `volumes` | | `[]` |
|
| `volumes` | | `[]` |
|
||||||
| `volumeMounts` | | `[]` |
|
| `volumeMounts` | | `[]` |
|
||||||
| `volumeClaimTemplates` | used for statefulset https://kubernetes.io/docs/concepts/workloads/controllers/statefulset | `[]` |
|
| `volumeClaimTemplates` | used for statefulset https://kubernetes.io/docs/concepts/workloads/controllers/statefulset | `[]` |
|
||||||
|
@ -98,8 +98,8 @@ configs: {} # ConfigMaps that needs to be created
|
|||||||
# data:
|
# data:
|
||||||
# KEY: VALUE
|
# 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.
|
# Additional volumes on the output Deployment definition.
|
||||||
volumes: []
|
volumes: []
|
||||||
# - name: foo
|
# - name: foo
|
||||||
|
Loading…
Reference in New Issue
Block a user