Skip to content
Snippets Groups Projects
Commit adcda0b5 authored by Yauheni  Rykhter (EPAM)'s avatar Yauheni Rykhter (EPAM) Committed by Oleksandr Kosse (EPAM)
Browse files

GONRG-9929: update partition bootstrap (eds)

parent a3f67ae4
No related branches found
No related tags found
1 merge request!566GONRG-9929: update partition bootstrap (eds)
......@@ -8,6 +8,8 @@ metadata:
data:
PARTITION_HOST: {{ .Values.data.partitionHost | quote }}
INDEXER_AUGMENTER_ENABLED: {{ .Values.data.indexerAugmenterEnabled | quote }}
EDS_ENABLED: {{ .Values.data.edsEnabled | quote }}
POLICY_SERVICE_ENABLED: {{ .Values.data.policyServiceEnabled | quote }}
PARTITION_SUFFIX: {{ .Values.data.partitionSuffix | quote }}
DATA_PARTITION_ID: {{ .Values.global.dataPartitionId | quote }}
{{- if .Values.global.onPremEnabled }}
......
......@@ -18,6 +18,8 @@ data:
minioExternalEndpoint: "" # use only if external minio is configured
minioIgnoreCertCheck: "false"
indexerAugmenterEnabled: "false"
policyServiceEnabled: "false"
edsEnabled: "true"
minioUIEndpoint: "http://minio:9001"
# deployments
requestsCpu: "5m"
......
......@@ -137,7 +137,7 @@ baremetal_system_partition_data() {
},
"policy-service-enabled": {
"sensitive": false,
"value": "false"
"value": "${POLICY_SERVICE_ENABLED}"
},
"obm.minio.external.endpoint": {
"sensitive": false,
......@@ -183,7 +183,7 @@ baremetal_additional_partition_data() {
},
"policy-service-enabled": {
"sensitive": false,
"value": "false"
"value": "${POLICY_SERVICE_ENABLED}"
},
"obm.minio.external.endpoint": {
"sensitive": false,
......
......@@ -77,6 +77,10 @@ gc_system_partition_data() {
"system.schema.bucket.name": {
"sensitive": false,
"value": "${PROJECT_ID}-system-schema"
},
"system.eds.enabled": {
"sensitive": false,
"value": "${EDS_ENABLED}"
}
}
}
......@@ -89,7 +93,7 @@ gc_additional_partition_data() {
"properties": {
"policy-service-enabled": {
"sensitive": false,
"value": "false"
"value": "${POLICY_SERVICE_ENABLED}"
},
"kubernetes-secret-name": {
"sensitive": false,
......@@ -106,6 +110,10 @@ gc_additional_partition_data() {
"schema.bucket.name": {
"sensitive": false,
"value": "${PROJECT_ID}-${DATA_PARTITION_ID_VALUE}-schema"
},
"eds.enabled": {
"sensitive": false,
"value": "${EDS_ENABLED}"
}
}
}
......
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