Split DNS and SSL off
This commit is contained in:
parent
0dd05a5c1d
commit
939ff4dcdb
7 changed files with 38 additions and 3 deletions
8
deployments/dns-ssl/kustomization.yaml
Normal file
8
deployments/dns-ssl/kustomization.yaml
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
|
||||
resources:
|
||||
- bind.yaml
|
||||
- certmanager.yaml
|
||||
- externaldns.yaml
|
|
@ -4,7 +4,4 @@ kind: Kustomization
|
|||
|
||||
resources:
|
||||
- authentik.yaml
|
||||
- bind.yaml
|
||||
- certmanager.yaml
|
||||
- externaldns.yaml
|
||||
- nextcloud.yaml
|
||||
|
|
|
@ -2,5 +2,6 @@ apiVersion: kustomize.config.k8s.io/v1beta1
|
|||
kind: Kustomization
|
||||
resources:
|
||||
- kusts/operators.yaml
|
||||
- kusts/dns-ssl.yaml
|
||||
- kusts/home-server.yaml
|
||||
|
||||
|
|
29
deployments/kusts/dns-ssl.yaml
Normal file
29
deployments/kusts/dns-ssl.yaml
Normal 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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue