mirror of
https://github.com/ansible/awx.git
synced 2026-01-16 12:20:45 -03:30
* upgrade `chromedriver` for ARM support * upgrade `pynacl` to fix `libsodium` build issue on ARM * remove unnecessary i686-specific `libstdc++.so.6` package * install `kubectl` and `tini` from upstream binaries for ARM support * use upstream `postgres` and `alpine` docker images for `postgresql` helm chart Fixes #7051
8 lines
357 B
YAML
8 lines
357 B
YAML
---
|
|
create_preload_data: true
|
|
build_dev: false
|
|
|
|
# Helper vars to construct the proper download URL for the current architecture
|
|
tini_architecture: '{{ { "x86_64": "amd64", "aarch64": "arm64", "armv7": "arm" }[ansible_facts.architecture] }}'
|
|
kubectl_architecture: '{{ { "x86_64": "amd64", "aarch64": "arm64", "armv7": "arm" }[ansible_facts.architecture] }}'
|