Split DNS and SSL off

This commit is contained in:
j 2025-07-12 12:48:17 +10:00
parent 0dd05a5c1d
commit 939ff4dcdb
7 changed files with 38 additions and 3 deletions

View file

@ -0,0 +1,8 @@
---
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- bind.yaml
- certmanager.yaml
- externaldns.yaml

View file

@ -4,7 +4,4 @@ kind: Kustomization
resources: resources:
- authentik.yaml - authentik.yaml
- bind.yaml
- certmanager.yaml
- externaldns.yaml
- nextcloud.yaml - nextcloud.yaml

View file

@ -2,5 +2,6 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization kind: Kustomization
resources: resources:
- kusts/operators.yaml - kusts/operators.yaml
- kusts/dns-ssl.yaml
- kusts/home-server.yaml - kusts/home-server.yaml

View file

@ -0,0 +1,29 @@
## I am so fucking mad with Flux right now I can't even begin explaining it.
# I have to do this because it doesn't respect order in kusts...
---
apiVersion: source.toolkit.fluxcd.io/v1
kind: GitRepository
metadata:
name: dns-ssl
namespace: flux-system
spec:
interval: 1m0s
ref:
branch: main
url: ssh://git@repobase.net/j/home-server.git
secretRef:
name: flux-ssh
---
apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
name: dns-ssl
namespace: flux-system
spec:
interval: 1m0s
path: ./deployments/dns-ssl
prune: true
sourceRef:
kind: GitRepository
name: dns-ssl