DCD-224: Add installation of the ServiceDesk OBR when specified version is "all" or "servicedesk".

This commit is contained in:
Steve Smith
2019-04-29 15:37:44 +10:00
parent 4d7201fd07
commit e32b439ce2
11 changed files with 154 additions and 1 deletions

View File

@@ -4,9 +4,19 @@
vars:
atl_product_family: "jira"
atl_product_edition: "jira-{{ lookup('env', 'ATL_PRODUCT_EDITION') | lower }}"
atl_product_user: "jira"
# FIXME: Slightly hacky workaround for specifying All or
# ServiceDesk; override to use Software and install plugins later.
atl_product_bundle: "{{ lookup('env', 'ATL_PRODUCT_EDITION') | lower }}"
bundle_map:
all: software
servicedesk: software
core: core
software: software
atl_product_edition: "jira-{{ bundle_map[atl_product_bundle] }}"
roles:
- linux_common
- aws_common