diff options
author | efiacor <fiachra.corcoran@est.tech> | 2023-02-15 11:51:52 +0000 |
---|---|---|
committer | efiacor <fiachra.corcoran@est.tech> | 2023-02-19 09:09:53 +0000 |
commit | ab235f493e324a558475a8eb163ba022bf5a3685 (patch) | |
tree | 252e74168fb8f2ea4272ff32d843b479b1898b8e /kubernetes/policy/components/policy-distribution/resources/config | |
parent | 0460cfce31a204cada6a202fd86515ca4fbbb113 (diff) |
[POLICY] Move policy dist to use strimzi templates
Move policy dist to use strimzi templates
Signed-off-by: efiacor <fiachra.corcoran@est.tech>
Change-Id: I4a03812a7545ce7a4fcd5443a2c0af89933b1a63
Issue-ID: DMAAP-1857
Diffstat (limited to 'kubernetes/policy/components/policy-distribution/resources/config')
-rwxr-xr-x | kubernetes/policy/components/policy-distribution/resources/config/config.json | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/kubernetes/policy/components/policy-distribution/resources/config/config.json b/kubernetes/policy/components/policy-distribution/resources/config/config.json index 94fc37b4ad..0db30b2fdd 100755 --- a/kubernetes/policy/components/policy-distribution/resources/config/config.json +++ b/kubernetes/policy/components/policy-distribution/resources/config/config.json @@ -3,6 +3,7 @@ # Copyright (C) 2018 Ericsson. All rights reserved. # Modifications Copyright (C) 2020 AT&T Intellectual Property. # Modifications Copyright (C) 2021 Bell Canada. All rights reserved. +# Modifications Copyright (C) 2023 Nordix Foundation # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -57,15 +58,17 @@ "parameterClassName":"org.onap.policy.distribution.reception.handling.sdc.SdcReceptionHandlerConfigurationParameterGroup", "parameters":{ "environmentName": "AUTO", - "isUseHttpsWithSDC": {{ (eq "true" (include "common.needTLS" .)) | ternary true false }}, + "isUseHttpsWithSdc": false, "keyStorePath": "null", "keyStorePassword": "null", "activeserverTlsAuth": false, - "sdcAddress": "sdc-be.{{ include "common.namespace" . }}:{{ (eq "true" (include "common.needTLS" .)) | ternary 8443 8080 }}", + "sdcAddress": "sdc-be.{{ include "common.namespace" . }}:8080", "user": "${SDCBE_USER}", "password": "${SDCBE_PASSWORD}", - "consumerGroup": "{{ .Values.config.kafka.sdcTopic.consumerGroup }}", - "consumerId": "{{ .Values.config.kafka.sdcTopic.clientId }}", + {{ with (first .Values.kafkaUser.acls) }} + "consumerId": "{{ .name }}-id", + "consumerGroup": "{{ .name }}", + {{ end }} "pollingInterval":20, "pollingTimeout":30, "artifactTypes": [ |