-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparameters-template.yaml
26 lines (19 loc) · 1.04 KB
/
parameters-template.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
# You shouldn't need to edit this file.
# You can adjust the configuration using environment variables.
# The URL for Keycloak
keycloak_server_url: "https://{{ lookup('env', 'IM_DEV_AUTH_HOSTNAME') | default('squonk.informaticsmatters.org', True) }}/auth"
# The hostname of the cluster,
# Change this and the other addresses for your cluster.
maui_hostname: "{{ lookup('env', 'IM_DEV_K8S_HOSTNAME') | default('kubernetes.docker.internal', True) }}"
maui_data_manager_api_address: "{{ lookup('env', 'IM_DEV_K8S_HOSTNAME') | default('kubernetes.docker.internal', True) }}/data-manager-api"
maui_account_server_api_address: "{{ lookup('env', 'IM_DEV_K8S_HOSTNAME') | default('kubernetes.docker.internal', True) }}/account-server-api"
maui_keycloak_client_id: SetMe
maui_keycloak_client_secret: SetMe
# You shouldn't need to change these...
maui_namespace: data-manager-ui
maui_image_tag: latest
maui_disable_ssl_cert_check: yes
# The KUBECONFIG reference.
# Used outside of AWX to set kubernetes credentials.
maui_kubeconfig: "{{ lookup('env', 'KUBECONFIG') }}"