mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
11 lines
404 B
YAML
11 lines
404 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: kubernetes, when: "kubernetes_context is defined" }
|
|
- { role: local_docker, when: "openshift_host is not defined and kubernetes_context is not defined" }
|