Min.io storage is used as a database backup storage.
Add bitnami
repo to helm:
helm repo add bitnami https://charts.bitnami.com/bitnami
Install minio
release:
helm install minio bitnami/minio -f minio-values.yaml
You can change minio
config with next vars (in minio.values
file):
accessKey.password
- access key id for storagesecretKey.password
- secret key itselfserviceAccount.name
- name of the service account for MinIOpersistence.enabled
- persistence enabling flagpersistence.size
- size of storage per each podingress
- ingress settingsdefaultBuckets
- default buckets created after release installation (comma-separated list of strings)
For more configuration values follow this link.
In Waldur Helm values.yaml
you need to setup:
minio.accessKey
- should be same asaccessKey
inminio.values.yaml
minio.secretKey
- should be same assecretKey
inminio.values.yaml
minio.bucketName
- should be same as a value fromdefaultBuckets
list inminio-values.yaml
minio.endpoint
- access URL tominio
storage (minio
service host and port). See this doc for details.