mirror of
https://github.com/khuedoan/homelab.git
synced 2024-12-23 01:14:38 +07:00
8447502d54
- Fully open source - Has free hosted version (my.zerotier.com) - Can be automated with Terraform - Pretty good performance with UDP hole punching
16 lines
348 B
YAML
16 lines
348 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
|
|
- k8up-operator
|
|
- tekton-pipelines
|
|
- zerotier
|