mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 06:51:10 +03:00
2e7b4529f8
* New options in the inventory file * Add defaults to some variables
11 lines
301 B
YAML
11 lines
301 B
YAML
---
|
|
- name: Build and deploy AWX
|
|
hosts: all
|
|
gather_facts: false
|
|
roles:
|
|
- { role: check_vars }
|
|
- { role: image_build, when: "dockerhub_base is not defined" }
|
|
- { role: openshift, when: "openshift_host is defined" }
|
|
- { role: local_docker, when: "openshift_host is not defined" }
|
|
|