Skip to content
Snippets Groups Projects
Commit d4998796 authored by xeruf's avatar xeruf
Browse files

suitecrm: use underscore variable separators

parent 02ded85f
No related branches found
No related tags found
No related merge requests found
......@@ -8,19 +8,16 @@ data:
values.yaml: |
ingress:
enabled: true
#annotations:
# kubernetes.io/tls-acme: "true"
hostname: "people.${domain}"
tls: true
certManager: true
suitecrmUsername: "admin"
suitecrmEmail: "${admin_email}"
suitecrmPassword: "${suitecrm-password}"
#existingSecret: stackspin-suitecrm-variables
suitecrmPassword: "${suitecrm_password}"
mariadb:
auth:
password: "${mariadb-password}"
rootPassword: "${mariadb-root-password}"
password: "${mariadb_password}"
rootPassword: "${mariadb_root_password}"
# TODO Adjust OIDC SSO to service
# - name: Stackspin
# key: "${client_id}"
......
......@@ -3,6 +3,6 @@ kind: Secret
metadata:
name: stackspin-suitecrm-variables
data:
suitecrm-password: "{{ 32 | generate_password | b64encode }}"
mariadb-password: "{{ 32 | generate_password | b64encode }}"
mariadb-root-password: "{{ 32 | generate_password | b64encode }}"
suitecrm_password: "{{ 32 | generate_password | b64encode }}"
mariadb_password: "{{ 32 | generate_password | b64encode }}"
mariadb_root_password: "{{ 32 | generate_password | b64encode }}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment