Skip to content
Snippets Groups Projects
Commit 3a24bb6b authored by Mikhail Piatliou (EPAM)'s avatar Mikhail Piatliou (EPAM)
Browse files

Merge branch 'gc-mpiatliou' into 'master'

GONRG-7892: added minio ui property

See merge request !458
parents f750a85a 70a477ae
No related branches found
No related tags found
1 merge request!458GONRG-7892: added minio ui property
Pipeline #216307 failed
......@@ -117,6 +117,7 @@ First you need to set variables in **values.yaml** file using any code editor. S
**data.minioExternalEndpoint** | api url for external minio, if external minio is configured - this value will be set for MINIO_ENDPOINT and MINIO_EXTERNAL_ENDPOINT in bootstrap configmap | string | - | no
**data.minioIgnoreCertCheck** | whether minio should ignore TLS certs validity check, set to true if external minio is protected by self-signed certificates | string | false | no
**data.indexerAugmenterEnabled** | enable indexer Augmenter | string | false | no
**data.minioUIEndpoint** | UI endpoint for gathering minio versions | string | `http://minio:9001` | yes
### Deployment variables
......
......@@ -15,6 +15,7 @@ data:
DOMAIN: "{{ .Values.global.domain }}"
BUCKET_PREFIX: {{ .Values.data.bucketPrefix | quote }}
MINIO_ENDPOINT: {{ default "http://minio:9000" .Values.data.minioExternalEndpoint | quote }}
MINIO_UI_ENDPOINT: {{ .Values.data.minioUIEndpoint | quote }}
{{- if .Values.global.useHttps }}
MINIO_EXTERNAL_ENDPOINT: {{ default (printf "https://s3.%s" .Values.global.domain) .Values.data.minioExternalEndpoint | quote }}
{{- else }}
......
......@@ -19,6 +19,7 @@ data:
minioExternalEndpoint: "" # use only if external minio is configured
minioIgnoreCertCheck: "false"
indexerAugmenterEnabled: "false"
minioUIEndpoint: "http://minio:9001"
# deployments
requestsCpu: "5m"
requestsMemory: "350Mi"
......
......@@ -63,6 +63,10 @@ baremetal_system_partition_data() {
"sensitive": false,
"value": "${MINIO_IGNORE_CERT_CHECK}"
},
"obm.minio.ui.endpoint": {
"sensitive": false,
"value": "${MINIO_UI_ENDPOINT}"
},
"kubernetes-secret-name": {
"sensitive": false,
"value": "eds-${DATA_PARTITION_ID_VALUE}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment