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