mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-14 08:53:07 -06:00
16 lines
470 B
YAML
16 lines
470 B
YAML
---
|
|
java_major_version: "8"
|
|
postgres_version: "9.6"
|
|
|
|
# Disable these when using the product installer, otherwise we end up
|
|
# fighting with it.
|
|
atl_use_system_jdk: false
|
|
|
|
# Ubuntu and Ansible use different architecture nomenclature; provide
|
|
# an easy method for translating between them
|
|
debian_architecture_translations:
|
|
x86_64: amd64
|
|
aarch64: arm64
|
|
|
|
debian_architecture: "{{ debian_architecture_translations[ansible_architecture] | default(ansible_architecture) }}"
|