Skip to content
Snippets Groups Projects
Commit aee8f8f3 authored by Mykola Ronik [EPAM / GCP]'s avatar Mykola Ronik [EPAM / GCP] Committed by Aliaksandr Ramanovich (EPAM)
Browse files

GONRG-9879: Search global configuration

parent 7c08b48d
No related branches found
No related tags found
1 merge request!569GONRG-9879: Search global configuration
......@@ -10,6 +10,7 @@ data:
INDEXER_AUGMENTER_ENABLED: {{ .Values.data.indexerAugmenterEnabled | quote }}
EDS_ENABLED: {{ .Values.data.edsEnabled | quote }}
POLICY_SERVICE_ENABLED: {{ .Values.data.policyServiceEnabled | quote }}
AUTOCOMPLETE_ENABLED: {{ .Values.data.autocompleteEnabled | quote }}
PARTITION_SUFFIX: {{ .Values.data.partitionSuffix | quote }}
DATA_PARTITION_ID: {{ .Values.global.dataPartitionId | quote }}
{{- if .Values.global.onPremEnabled }}
......
......@@ -21,6 +21,7 @@ data:
policyServiceEnabled: "true"
edsEnabled: "false"
minioUIEndpoint: "http://minio:9001"
autocompleteEnabled: "false"
# deployments
requestsCpu: "5m"
requestsMemory: "350Mi"
......
......@@ -175,6 +175,10 @@ baremetal_system_partition_data() {
"sensitive": false,
"value": "${POLICY_SERVICE_ENABLED}"
},
"featureFlag.autocomplete.enabled": {
"sensitive": false,
"value": "${AUTOCOMPLETE_ENABLED}"
},
"wellbore-dms-bucket": {
"sensitive": false,
"value": "${BUCKET_PREFIX}-${DATA_PARTITION_ID_VALUE}-wellbore"
......
......@@ -85,6 +85,10 @@ gc_system_partition_data() {
"featureFlag.opa.enabled": {
"sensitive": false,
"value": "${POLICY_SERVICE_ENABLED}"
},
"featureFlag.autocomplete.enabled": {
"sensitive": false,
"value": "${AUTOCOMPLETE_ENABLED}"
}
}
}
......@@ -122,6 +126,10 @@ gc_additional_partition_data() {
"featureFlag.opa.enabled": {
"sensitive": false,
"value": "${POLICY_SERVICE_ENABLED}"
},
"featureFlag.autocomplete.enabled": {
"sensitive": false,
"value": "${AUTOCOMPLETE_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