12345678910111213141516171819202122232425262728 |
- # When inside the versioned minio folder, run:
- # helm dependency update
- # helm template -f ix_values.yaml -f ci/logsearch-values.yaml .
- # Always use a unique hostPath for each test
- minioCreds:
- rootUser: minio_test
- rootPass: minio_test
- minioStorage:
- - type: hostPath
- hostPath: /mnt/{{ .Release.Namespace }}/data1
- datasetName: ""
- mountPath: /data1
- minioLogging:
- logsearch:
- enabled: true
- diskCapacityGB: 5
- pgData:
- type: hostPath
- hostPath: /mnt/{{ .Release.Namespace }}/postgres_data
- datasetName: ""
- pgBackup:
- type: hostPath
- hostPath: /mnt/{{ .Release.Namespace }}/postgres_backup
- datasetName: ""
|