diff --git a/devops/gc/deploy/README.md b/devops/gc/deploy/README.md index 2b3a65788c4cc63d0bbc71f529b444104cfcd5c5..6a055d4dde8ea40dd9840f6d7c558c437f0f8b23 100644 --- a/devops/gc/deploy/README.md +++ b/devops/gc/deploy/README.md @@ -45,7 +45,6 @@ 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 diff --git a/devops/gc/deploy/templates/configmap.yaml b/devops/gc/deploy/templates/configmap.yaml index 7ff0ec68a896682c818062ad88824d6a8084f757..04ff821e04d1c842b87f179bebf49de5604051e0 100644 --- a/devops/gc/deploy/templates/configmap.yaml +++ b/devops/gc/deploy/templates/configmap.yaml @@ -27,4 +27,3 @@ 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 }} diff --git a/devops/gc/deploy/values.yaml b/devops/gc/deploy/values.yaml index bde11d3f63bd1b869b8314b8505a4c4b8f4b76f0..86efde19e26a2d9c2726650177937bb96ee5ff3b 100644 --- a/devops/gc/deploy/values.yaml +++ b/devops/gc/deploy/values.yaml @@ -12,7 +12,6 @@ data: indexerHost: "http://indexer" policyId: 'osdu.partition["%s"].search' securityHttpsCertificateTrust: "true" - servicePolicyEnabled: false # Deployments requestsCpu: "35m" requestsMemory: "400Mi"