ninja: add redis password
This commit is contained in:
parent
b8c07bf934
commit
3972129c5a
|
@ -8,19 +8,6 @@ data:
|
|||
# https://github.com/invoiceninja/dockerfiles/blob/master/charts/invoiceninja/values.yaml
|
||||
ingress:
|
||||
enabled: true
|
||||
# Elaborate style
|
||||
#annotations:
|
||||
# kubernetes.io/tls-acme: "true"
|
||||
#hosts:
|
||||
# - host: "ninja.${domain}"
|
||||
# paths:
|
||||
# - path: /
|
||||
# pathType: Prefix
|
||||
#tls:
|
||||
# - secretName: invoiceninja-tls
|
||||
# hosts:
|
||||
# - "ninja.${domain}"
|
||||
# Bitnami style
|
||||
hostname: "ninja.${domain}"
|
||||
tls: true
|
||||
certManager: true
|
||||
|
@ -35,6 +22,9 @@ data:
|
|||
auth:
|
||||
password: "${mariadb_password}"
|
||||
rootPassword: "${mariadb_root_password}"
|
||||
redis:
|
||||
auth:
|
||||
password: "${redis_password}"
|
||||
|
||||
# TODO Adjust invoiceninja Mailing config
|
||||
# mailer:
|
||||
|
|
|
@ -4,5 +4,6 @@ metadata:
|
|||
name: stackspin-invoiceninja-variables
|
||||
data:
|
||||
password: "{{ 32 | generate_password | b64encode }}"
|
||||
redis_password: "{{ 32 | generate_password | b64encode }}"
|
||||
mariadb_password: "{{ 32 | generate_password | b64encode }}"
|
||||
mariadb_root_password: "{{ 32 | generate_password | b64encode }}"
|
||||
|
|
Loading…
Reference in New Issue