mirror of
https://github.com/wahyd4/home-argocd.git
synced 2026-08-08 21:05:09 +10:00
55 lines
1.5 KiB
YAML
55 lines
1.5 KiB
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: minio
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
source:
|
|
chart: minio
|
|
repoURL: https://charts.bitnami.com/bitnami
|
|
path: minio
|
|
targetRevision: 11.10.1
|
|
helm:
|
|
releaseName: minio
|
|
# valueFiles: ['minio-values.yaml']
|
|
values: |
|
|
persistence:
|
|
enabled: true
|
|
storageClass: nfs-client
|
|
size: 100Gi
|
|
# existingClaim: minio-nfs
|
|
volumePermissions:
|
|
enabled: true
|
|
securityContext:
|
|
fsGroup: 1000
|
|
runAsUser: 1000
|
|
auth:
|
|
existingSecret: minio-credentials
|
|
metrics:
|
|
serviceMonitor:
|
|
enabled: true
|
|
additionalLabels:
|
|
release: prometheus
|
|
ingress:
|
|
enabled: true
|
|
annotations:
|
|
kubernetes.io/ingress.class: "nginx"
|
|
kubernetes.io/tls-acme: "true"
|
|
cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
|
nginx.ingress.kubernetes.io/proxy-body-size: 102400m
|
|
# nginx.ingress.kubernetes.io/auth-url: "https://id.junv.cc/oauth2/auth"
|
|
# nginx.ingress.kubernetes.io/auth-signin: "https://id.junv.cc/oauth2/start?rd=https%3A%2F%2F$host$request_uri"
|
|
path: /
|
|
hostname: minio.junv.cc
|
|
tls: true
|
|
certManager: true
|
|
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: db
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|