Add minio

This commit is contained in:
Ruben Hensen
2024-09-09 17:00:46 +02:00
parent 9d28838304
commit 3be216345e
3 changed files with 49 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: argocd-folder
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
source:
repoURL: https://github.com/rubenhensen/k8scd.git
targetRevision: HEAD
path: minio
destination:
server: https://kubernetes.default.svc
namespace: minio
syncPolicy:
syncOptions:
- CreateNamespace=true
automated:
selfHeal: true
prune: true
+28
View File
@@ -0,0 +1,28 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: minio
namespace: minio
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
syncPolicy:
syncOptions:
- CreateNamespace=true
automated:
selfHeal: true
prune: true
project: default
sources:
- chart: operator
repoURL: https://operator.min.io
targetRevision: 6.0.3
helm:
valueFiles:
- $values/minio/values.yaml
- repoURL: https://github.com/rubenhensen/k8scd.git
targetRevision: HEAD
ref: values
destination:
server: https://kubernetes.default.svc
namespace: minio
View File