mirror of
https://github.com/ansible/awx.git
synced 2026-01-21 14:38:00 -03:30
* Allow for customizing the receptor image * Hook in receptor image to docker-compose template * Fix missing -e to pass into Dockerfile playbook * Add some docs
14 lines
487 B
YAML
14 lines
487 B
YAML
---
|
|
build_dev: false
|
|
kube_dev: false
|
|
headless: no
|
|
dockerfile_dest: '../..'
|
|
dockerfile_name: 'Dockerfile'
|
|
template_dest: '_build'
|
|
|
|
receptor_image: quay.io/ansible/receptor:devel
|
|
|
|
# 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] }}'
|