forked from eddycharly/kind-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
minio.yaml
59 lines (59 loc) · 1.47 KB
/
minio.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: minio
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
source:
repoURL: https://charts.bitnami.com/bitnami
chart: minio
targetRevision: '*'
helm:
values: |
mode: standalone
auth:
rootUser: root
rootPassword: root1234
persistence:
enabled: true
size: 500M
ingress:
enabled: true
hostname: minio.kind.cluster
annotations:
kubernetes.io/ingress.class: nginx
cert-manager.io/cluster-issuer: ca-issuer
tls: true
apiIngress:
enabled: true
hostname: minio-api.kind.cluster
annotations:
kubernetes.io/ingress.class: nginx
cert-manager.io/cluster-issuer: ca-issuer
tls: true
metrics:
serviceMonitor:
enabled: true
podSecurityContext:
runAsNonRoot: true
containerSecurityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
runAsNonRoot: true
destination:
server: https://kubernetes.default.svc
namespace: minio
revisionHistoryLimit: 3
syncPolicy:
syncOptions:
- ApplyOutOfSyncOnly=true
- CreateNamespace=true
- FailOnSharedResource=true
- PruneLast=true
automated:
prune: true
selfHeal: true