mirror of
https://github.com/khuedoan/homelab.git
synced 2024-12-23 01:14:38 +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
|