Skip to content
Snippets Groups Projects
Commit 236efab6 authored by Volodymyr Pienskoi [EPAM / GCP]'s avatar Volodymyr Pienskoi [EPAM / GCP]
Browse files

GONRG-6646: Add variable for disabling Policy service

parent 6eb8d362
No related branches found
No related tags found
1 merge request!446GONRG-6646: Add variable for disabling Policy service
......@@ -38,6 +38,7 @@ You need to set variables in **values.yaml** file using any code editor. Some of
**data.partitionHost** | Partition service host | string | `http://partition` | yes
**data.policyId** | policy id from ex `${POLICY_HOST}/api/policy/v1/policies` | string | `search` | yes
**data.securityHttpsCertificateTrust** | Elastic client connection uses TrustSelfSignedStrategy(), if it is `true` | bool | `true` | yes
**data.servicePolicyEnabled** | Enables Search service integration with Policy service | bool | `false` | yes
**data.redisSearchHost** | The host for redis instance. If empty (by default), helm installs an internal redis instance | string | - | yes
**data.redisSearchPort** | The port for redis instance | digit | 6379 | yes
......
......@@ -23,3 +23,4 @@ data:
POLICY_HOST: {{ .Values.data.policyHost | quote }}
POLICY_ID: {{ .Values.data.policyId | quote }}
INDEXER_BASE_HOST: {{ .Values.data.indexerHost | quote }}
SERVICE_POLICY_ENABLED: {{ .Values.data.servicePolicyEnabled | quote }}
......@@ -8,6 +8,7 @@ data:
indexerHost: "http://indexer"
policyId: "osdu.instance.search"
securityHttpsCertificateTrust: "true"
servicePolicyEnabled: false
# Deployments
requestsCpu: "20m"
requestsMemory: "550Mi"
......
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