Skip to content
Snippets Groups Projects
Commit 35e7af59 authored by Maarten de Waard's avatar Maarten de Waard
Browse files

set acmeStaging variable in helmfiles

parent a7646833
No related branches found
No related tags found
No related merge requests found
......@@ -7,3 +7,4 @@ admin_email: "admin@example.com"
# Label of this deployment.
release_name: "test"
keycloak_password: "{{ lookup('password', './secrets/keycloak_admin_password') }}"
acme_staging: "true"
......@@ -7,3 +7,5 @@ adminEmail: "{{ admin_email }}"
# A label for the application releases. If you have multiple deployments
# this allows you to distinguish them.
releaseName: "{{ release_name }}"
# Use Let's Encrypt staging server. Set this to `"false"` to use the live server
acmeStaging: "{{ acme_staging }}"
......@@ -177,6 +177,7 @@ if __name__ == "__main__":
settings['ip_address'] = ip
settings['domain'] = name + '.ci.openappstack.net'
settings['admin_email'] = "admin@{0}".format(settings['domain'])
settings['acme_staging'] = "true"
if not os.path.exists('./group_vars'):
os.mkdir('./group_vars')
......
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