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: ...@@ -8,19 +8,16 @@ data:
values.yaml: | values.yaml: |
ingress: ingress:
enabled: true enabled: true
#annotations:
# kubernetes.io/tls-acme: "true"
hostname: "people.${domain}" hostname: "people.${domain}"
tls: true tls: true
certManager: true certManager: true
suitecrmUsername: "admin" suitecrmUsername: "admin"
suitecrmEmail: "${admin_email}" suitecrmEmail: "${admin_email}"
suitecrmPassword: "${suitecrm-password}" suitecrmPassword: "${suitecrm_password}"
#existingSecret: stackspin-suitecrm-variables
mariadb: mariadb:
auth: auth:
password: "${mariadb-password}" password: "${mariadb_password}"
rootPassword: "${mariadb-root-password}" rootPassword: "${mariadb_root_password}"
# TODO Adjust OIDC SSO to service # TODO Adjust OIDC SSO to service
# - name: Stackspin # - name: Stackspin
# key: "${client_id}" # key: "${client_id}"
......
...@@ -3,6 +3,6 @@ kind: Secret ...@@ -3,6 +3,6 @@ kind: Secret
metadata: metadata:
name: stackspin-suitecrm-variables name: stackspin-suitecrm-variables
data: data:
suitecrm-password: "{{ 32 | generate_password | b64encode }}" suitecrm_password: "{{ 32 | generate_password | b64encode }}"
mariadb-password: "{{ 32 | generate_password | b64encode }}" mariadb_password: "{{ 32 | generate_password | b64encode }}"
mariadb-root-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