mirror of
https://github.com/ansible/awx-operator.git
synced 2026-03-26 21:33:14 +00:00
23 lines
374 B
YAML
23 lines
374 B
YAML
---
|
|
- name: Converge
|
|
hosts: localhost
|
|
connection: local
|
|
gather_facts: no
|
|
collections:
|
|
- kubernetes.core
|
|
|
|
tasks:
|
|
- name: Create Namespace
|
|
k8s:
|
|
api_version: v1
|
|
kind: Namespace
|
|
name: '{{ namespace }}'
|
|
tags:
|
|
- always
|
|
|
|
- import_tasks: kustomize.yml
|
|
vars:
|
|
state: present
|
|
tags:
|
|
- always
|