mirror of
https://github.com/ansible/awx-operator.git
synced 2026-03-26 21:33:14 +00:00
18 lines
404 B
YAML
18 lines
404 B
YAML
---
|
|
- name: Build and Deploy the AWX Operator
|
|
hosts: localhost
|
|
|
|
collections:
|
|
- community.general
|
|
|
|
tasks:
|
|
- name: Build and (optionally) push operator image
|
|
docker_image:
|
|
name: "{{ operator_image }}:{{ operator_version }}"
|
|
pull: no
|
|
push: "{{ push_image | bool }}"
|
|
build:
|
|
dockerfile: "build/Dockerfile"
|
|
path: "../"
|
|
force: yes
|