mirror of
https://github.com/khuedoan/homelab.git
synced 2025-03-13 03:22:33 +07:00
14 lines
305 B
YAML
14 lines
305 B
YAML
![]() |
- hosts: localhost
|
||
|
tasks:
|
||
|
- name: Ensure required namespaces exist
|
||
|
kubernetes.core.k8s:
|
||
|
api_version: v1
|
||
|
kind: Namespace
|
||
|
name: "{{ item }}"
|
||
|
state: present
|
||
|
loop:
|
||
|
- tekton-pipelines
|
||
|
- cert-manager
|
||
|
- external-dns
|
||
|
- cloudflared
|