-
Notifications
You must be signed in to change notification settings - Fork 0
/
parameters.template
68 lines (48 loc) · 1.81 KB
/
parameters.template
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
# Infrastructure parameter template file.
# Tune accordingly and replace all "SetMe" values with something meaningful
# where the corresponding application is also set to 'present'.
#
# Parameters here are typical for an AWS deployment.
# Cert-Manager installation ---------------------------------------------------
# For dynamic (let's-encrypt) certificate generation.
cm_letsencrypt_email: SetMe (if present)
# EFS installation ------------------------------------------------------------
# This allows you to use 'efs' in any PVC storageClassName,
# and (importantly) any PVC that needs a 'ReadWriteMany' (RWX) Access Mode.
efs_state: present
efs_backing_volume_name: SetMe (if present)
# Cinder installation ---------------------------------------------------------
# This allows you to use cinder provisioning (OpenStack).
# You will need to provide the base64 encoding of your cloud config file.
cinder_state: absent
cinder_cloud_config: SetMe
# Infrastructure installation -------------------------------------------------
# Do we want any infrastructure applications at all?
# Setting infra_state to 'absent' will prevent the
# installation of the database, keycloak and AWX.
#
# If hs is set to 'absent' the corresponding values
# infrastructure apps like for Postgres, AWX or Keycloak
# will be ignored.
infra_state: present
# PostgreSQL installation
# ----------
pg_vol_storageclass: gp2
pg_vol_size_g: 10
pg_bu_state: absent
# Keycloak installation
# --------
# For SSO authentication.
# Not required by all applications,
# and not (atm) required by the Fragalysis Stack.
kc_state: absent
kc_hostname: SetMe (if present)
# AWX installation
# ---
# the Ansible AWX server (normally required) and dependent on the
# PostgreSQL database (above)
ax_state: present
ax_hostname: SetMe
ax_admin: admin
ax_admin_password: SetMe