mirror of
https://github.com/ansible/awx.git
synced 2026-05-22 08:17:39 -02:30
Define variables tini_architecture and kubectl_architecture in the correct Ansible role
This commit is contained in:
@@ -4,3 +4,7 @@ kube_dev: false
|
|||||||
dockerfile_dest: '../..'
|
dockerfile_dest: '../..'
|
||||||
dockerfile_name: 'Dockerfile'
|
dockerfile_name: 'Dockerfile'
|
||||||
template_dest: '_build'
|
template_dest: '_build'
|
||||||
|
|
||||||
|
# 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] }}'
|
||||||
|
|||||||
@@ -1,6 +1,2 @@
|
|||||||
---
|
---
|
||||||
awx_image: quay.io/ansible/awx
|
awx_image: quay.io/ansible/awx
|
||||||
|
|
||||||
# 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] }}'
|
|
||||||
|
|||||||
Reference in New Issue
Block a user