Compare commits
2 Commits
6d1667c5a7
...
1d67b3bd98
| Author | SHA1 | Date | |
|---|---|---|---|
| 1d67b3bd98 | |||
| 5a78ae4c73 |
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
argo-helm.yaml
|
||||
25
values.yaml
25
values.yaml
@@ -148,7 +148,7 @@ persistence:
|
||||
## A manually managed Persistent Volume and Claim
|
||||
## Requires persistence.enabled: true
|
||||
## If defined, PVC must be created manually before volume will be bound
|
||||
existingClaim: ""
|
||||
existingClaim: "minio"
|
||||
|
||||
## minio data Persistent Volume Storage Class
|
||||
## If defined, storageClassName: <storageClass>
|
||||
@@ -159,7 +159,7 @@ persistence:
|
||||
##
|
||||
## Storage class of PV to bind. By default it looks for standard storage class.
|
||||
## If the PV uses a different storage class, specify that here.
|
||||
storageClass: "nfs"
|
||||
storageClass: "nfs-csi"
|
||||
#volumeName: "minio"
|
||||
accessMode: ReadWriteMany
|
||||
size: 500Gi
|
||||
@@ -200,7 +200,8 @@ service:
|
||||
ingress:
|
||||
enabled: true
|
||||
ingressClassName: openshift-default
|
||||
labels: {}
|
||||
labels:
|
||||
{}
|
||||
# node-role.kubernetes.io/ingress: platform
|
||||
annotations:
|
||||
kubernetes.io/ingress.class: openshift-default
|
||||
@@ -244,7 +245,8 @@ consoleService:
|
||||
consoleIngress:
|
||||
enabled: true
|
||||
ingressClassName: openshift-default
|
||||
labels: {}
|
||||
labels:
|
||||
{}
|
||||
# node-role.kubernetes.io/ingress: platform
|
||||
annotations:
|
||||
kubernetes.io/ingress.class: openshift-default
|
||||
@@ -397,7 +399,8 @@ makeUserJob:
|
||||
|
||||
## List of service accounts to be created after minio install
|
||||
##
|
||||
svcaccts: []
|
||||
svcaccts:
|
||||
[]
|
||||
## accessKey, secretKey and parent user to be assigned to the service accounts
|
||||
## Add new service accounts as explained here https://min.io/docs/minio/kubernetes/upstream/administration/identity-access-management/minio-user-management.html#service-accounts
|
||||
# - accessKey: console-svcacct
|
||||
@@ -436,7 +439,8 @@ makeServiceAccountJob:
|
||||
|
||||
## List of buckets to be created after minio install
|
||||
##
|
||||
buckets: []
|
||||
buckets:
|
||||
[]
|
||||
# # Name of the bucket
|
||||
# - name: bucket1
|
||||
# # Policy to be set on the
|
||||
@@ -485,13 +489,15 @@ customCommandJob:
|
||||
requests:
|
||||
memory: 128Mi
|
||||
## Additional volumes to add to the post-job.
|
||||
extraVolumes: []
|
||||
extraVolumes:
|
||||
[]
|
||||
# - name: extra-policies
|
||||
# configMap:
|
||||
# name: my-extra-policies-cm
|
||||
## Additional volumeMounts to add to the custom commands container when
|
||||
## running the post-job.
|
||||
extraVolumeMounts: []
|
||||
extraVolumeMounts:
|
||||
[]
|
||||
# - name: extra-policies
|
||||
# mountPath: /mnt/extras/
|
||||
# Command to run after the main command on exit
|
||||
@@ -581,7 +587,8 @@ metrics:
|
||||
# for node metrics
|
||||
relabelConfigs: {}
|
||||
# for cluster metrics
|
||||
relabelConfigsCluster: {}
|
||||
relabelConfigsCluster:
|
||||
{}
|
||||
# metricRelabelings:
|
||||
# - regex: (server|pod)
|
||||
# action: labeldrop
|
||||
|
||||
Reference in New Issue
Block a user