mirror of
https://github.com/khuedoan/homelab.git
synced 2024-12-23 01:24:36 +07:00
17 lines
374 B
YAML
17 lines
374 B
YAML
- hosts: localhost
|
|
tasks:
|
|
- name: Ensure required namespaces exist
|
|
kubernetes.core.k8s:
|
|
api_version: v1
|
|
kind: Namespace
|
|
name: "{{ item }}"
|
|
state: present
|
|
loop:
|
|
- cert-manager
|
|
- cloudflared
|
|
- external-dns
|
|
- global-secrets
|
|
- k8up-operator
|
|
- monitoring-system
|
|
- zerotier
|