feat(owncloud): Added first draft for owncloud deployment

This commit is contained in:
Daniël Groothuis
2025-11-01 20:17:32 +01:00
parent 4e56529d45
commit d0574f0a9f
7 changed files with 594 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,24 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: owncloud
namespace: owncloud
labels:
platform.dgse.cloud/cluster: artemis
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: owncloud
source:
repoURL: 'https://git.dgse.cloud/DGSE/kubernetes.git'
path: manifests/artemis/owncloud
targetRevision: main
destination:
namespace: owncloud
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