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