# minio-values.yaml - Configuration MinIO pour k3s # À placer dans factory/argocd/apps/minio/ apiVersion: argoproj.io/v1alpha1 kind: Application metadata: name: minio namespace: argocd spec: project: default source: repoURL: https://charts.bitnami.com/bitnami chart: minio targetRevision: 12.13.0 helm: values: | global: storageClass: longhorn auth: rootUser: kadans-admin rootPassword: "${MINIO_PASSWORD}" # À définir dans Vault mode: standalone persistence: enabled: true size: 50Gi storageClass: longhorn resources: requests: memory: 512Mi cpu: 250m limits: memory: 1Gi cpu: 500m service: type: ClusterIP port: 9000 ingress: enabled: true hostname: minio.arcodange.lab annotations: traefik.ingress.kubernetes.io/router.entrypoints: websecure traefik.ingress.kubernetes.io/router.tls: "true" tls: true buckets: - name: kadans-videos policy: none purge: false - name: kadans-thumbnails policy: none purge: false destination: server: https://kubernetes.default.svc namespace: storage syncPolicy: automated: prune: true selfHeal: true