Move other apps to subdirs

main
trivernis 1 year ago
parent 72733b61b4
commit 1c543979cf
Signed by: Trivernis
GPG Key ID: 7E6D18B61C8D2F4B

@ -2,15 +2,6 @@
apiVersion: kustomize.config.k8s.io/v1beta1 apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization kind: Kustomization
namespace: kube-system namespace: kube-system
metadata:
name: longhorn
resources:
- longhorn/longhorn-sealedsecret.yaml
- longhorn/route.yaml
---
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: kube-system
metadata: metadata:
name: traefik name: traefik
resources: resources:
@ -18,14 +9,6 @@ resources:
--- ---
apiVersion: kustomize.config.k8s.io/v1beta1 apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization kind: Kustomization
namespace: plantwiki
metadata:
name: plantwiki
resources:
- plantwiki/deploy.yaml
---
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: searxng namespace: searxng
metadata: metadata:
name: searxng name: searxng

@ -4,7 +4,7 @@ namespace: kube-system
metadata: metadata:
name: flux-webhook name: flux-webhook
resources: resources:
- flux/webhook-service.yaml - app/webhook-service.yaml
- flux/webhook-route.yaml - app/webhook-route.yaml
- flux/webhook-sealedsecret.yaml - app/webhook-sealedsecret.yaml
- flux/webhook-receiver.yaml - app/webhook-receiver.yaml

@ -0,0 +1,8 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: kube-system
metadata:
name: longhorn
resources:
- app/longhorn-sealedsecret.yaml
- app/route.yaml

@ -0,0 +1,7 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: plantwiki
metadata:
name: plantwiki
resources:
- app/deploy.yaml

@ -27,3 +27,33 @@ spec:
prune: true prune: true
wait: true wait: true
timeout: 5m0s timeout: 5m0s
---
apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
name: apps-longhorn
namespace: flux-system
spec:
interval: 5m
sourceRef:
kind: GitRepository
name: flux-system
path: ./apps/longhorn
prune: true
wait: true
timeout: 5m0s
---
apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
name: apps-plantwiki
namespace: flux-system
spec:
interval: 5m
sourceRef:
kind: GitRepository
name: flux-system
path: ./apps/plantwiki
prune: true
wait: true
timeout: 5m0s

Loading…
Cancel
Save