diff options
author | Andreas Geissler <andreas-geissler@telekom.de> | 2023-01-09 14:43:05 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2023-01-09 14:43:05 +0000 |
commit | b892b46c700959250143cb7ae38c580cfbbd32e1 (patch) | |
tree | 8272dfa6f25b8ba36abdb7e3a8a4e809ad16cccd /kubernetes/policy/components/policy-distribution/resources/config/config.json | |
parent | 7373ad2c2660cd42a997d3908e2f4fb8dac55fca (diff) | |
parent | 3f7b3755e7c3e6af70b76690a67b95d4ed55a198 (diff) |
Merge "[POLICY-SDC-DIST] Upgrade policy-distribtuion to use kafka native"
Diffstat (limited to 'kubernetes/policy/components/policy-distribution/resources/config/config.json')
-rwxr-xr-x | kubernetes/policy/components/policy-distribution/resources/config/config.json | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/kubernetes/policy/components/policy-distribution/resources/config/config.json b/kubernetes/policy/components/policy-distribution/resources/config/config.json index 1aa9044eab..94fc37b4ad 100755 --- a/kubernetes/policy/components/policy-distribution/resources/config/config.json +++ b/kubernetes/policy/components/policy-distribution/resources/config/config.json @@ -56,27 +56,23 @@ "sdcConfiguration":{ "parameterClassName":"org.onap.policy.distribution.reception.handling.sdc.SdcReceptionHandlerConfigurationParameterGroup", "parameters":{ - "asdcAddress": "sdc-be.{{ include "common.namespace" . }}:{{ (eq "true" (include "common.needTLS" .)) | ternary 8443 8080 }}", - "messageBusAddress": [ - "message-router.{{ include "common.namespace" . }}" - ], + "environmentName": "AUTO", + "isUseHttpsWithSDC": {{ (eq "true" (include "common.needTLS" .)) | ternary true false }}, + "keyStorePath": "null", + "keyStorePassword": "null", + "activeserverTlsAuth": false, + "sdcAddress": "sdc-be.{{ include "common.namespace" . }}:{{ (eq "true" (include "common.needTLS" .)) | ternary 8443 8080 }}", "user": "${SDCBE_USER}", "password": "${SDCBE_PASSWORD}", + "consumerGroup": "{{ .Values.config.kafka.sdcTopic.consumerGroup }}", + "consumerId": "{{ .Values.config.kafka.sdcTopic.clientId }}", "pollingInterval":20, "pollingTimeout":30, - "consumerId": "policy-id", "artifactTypes": [ "TOSCA_CSAR", "HEAT" ], - "consumerGroup": "policy-group", - "environmentName": "AUTO", - "keyStorePath": "null", - "keyStorePassword": "null", - "activeserverTlsAuth": false, - "isFilterinEmptyResources": true, - "isUseHttpsWithDmaap": {{ (eq "true" (include "common.needTLS" .)) | ternary true false }}, - "isUseHttpsWithSDC": {{ (eq "true" (include "common.needTLS" .)) | ternary true false }} + "isFilterinEmptyResources": true } } }, |