mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2024-12-14 11:58:02 +00:00
ada96d9041
* feat: update pod template Signed-off-by: andreibe <95860450+andreibe24@users.noreply.github.com> * fix: remove duplicate Signed-off-by: andreibe <95860450+andreibe24@users.noreply.github.com> * feat: update chart values.yaml Signed-off-by: andreibe <95860450+andreibe24@users.noreply.github.com> * feat: update README.md Signed-off-by: andreibe <95860450+andreibe24@users.noreply.github.com> * fix: change template behaviour on env Signed-off-by: andreibe <andreibe24@users.noreply.github.com> * chore: add helm ci tests Signed-off-by: andreibe <andreibe24@users.noreply.github.com> * fix: rerun go test Signed-off-by: andreibe <andreibe24@users.noreply.github.com> * test: add extra manifests Signed-off-by: andreibe <andreibe24@users.noreply.github.com> * fix: ci tests Signed-off-by: andreibe <andreibe24@users.noreply.github.com> --------- Signed-off-by: andreibe <95860450+andreibe24@users.noreply.github.com> Signed-off-by: andreibe <andreibe24@users.noreply.github.com> Co-authored-by: andreibe <andreibe24@users.noreply.github.com> Co-authored-by: Tarun Pothulapati <tarun@dragonflydb.io>
28 lines
462 B
YAML
28 lines
462 B
YAML
extraObjects:
|
|
- apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: my-configmap
|
|
data:
|
|
configKey1: configValue1
|
|
configKey2: configValue2
|
|
- apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: my-secret
|
|
type: Opaque
|
|
stringData:
|
|
username: username
|
|
password: password
|
|
|
|
env:
|
|
- name: ENV_VAR43
|
|
value: value1
|
|
- name: ENV_VAR323
|
|
value: value2
|
|
|
|
envFrom:
|
|
- configMapRef:
|
|
name: my-configmap
|
|
- secretRef:
|
|
name: my-secret
|