feat(nextcloud): Added first draft for nextcloud deployment

This commit is contained in:
Daniël Groothuis
2025-11-01 23:15:54 +01:00
parent 18e368be40
commit a5a8c0912a
7 changed files with 1079 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
---
apiVersion: argoproj.io/v1alpha1
kind: AppProject
metadata:
name: nextcloud
spec:
description: Self Hosted Cloud
sourceRepos:
- '*'
sourceNamespaces:
- '*'
destinations:
- namespace: 'nextcloud'
server: '*'
clusterResourceWhitelist:
- group: '*'
kind: '*'

View File

@@ -0,0 +1,24 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: nextcloud
namespace: nextcloud
labels:
platform.dgse.cloud/cluster: artemis
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: nextcloud
source:
repoURL: 'https://git.dgse.cloud/DGSE/kubernetes.git'
path: manifests/artemis/nextcloud
targetRevision: main
destination:
namespace: nextcloud
name: in-cluster
syncPolicy:
syncOptions:
- CreateNamespace=true
automated:
prune: true
selfHeal: true

View File

@@ -0,0 +1,7 @@
---
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- app-project.yaml
- application.yaml