From: rameshiyer27 Date: Tue, 3 Oct 2023 14:06:27 +0000 (+0100) Subject: Add configurable acm parameters in docker and helm charts X-Git-Tag: 3.0.1~5 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F87%2F136087%2F1;p=policy%2Fdocker.git Add configurable acm parameters in docker and helm charts Issue-ID: POLICY-4830 Signed-off-by: rameshiyer27 Change-Id: I41841cb6811973e40c27e3e434d2d2f83c71e1af --- diff --git a/compose/config/clamp/AcRuntimeParameters.yaml b/compose/config/clamp/AcRuntimeParameters.yaml index ac1310c2..dc9a9846 100644 --- a/compose/config/clamp/AcRuntimeParameters.yaml +++ b/compose/config/clamp/AcRuntimeParameters.yaml @@ -59,6 +59,9 @@ runtime: - ${topicServer:message-router} topicCommInfrastructure: dmaap useHttps: false + acmParameters: + toscaElementName: org.onap.policy.clamp.acm.AutomationCompositionElement + toscaCompositionName: org.onap.policy.clamp.acm.AutomationComposition management: endpoints: diff --git a/helm/policy/components/policy-clamp-runtime-acm/resources/config/acRuntimeParameters.yaml b/helm/policy/components/policy-clamp-runtime-acm/resources/config/acRuntimeParameters.yaml index 98b6a76c..1e567f45 100755 --- a/helm/policy/components/policy-clamp-runtime-acm/resources/config/acRuntimeParameters.yaml +++ b/helm/policy/components/policy-clamp-runtime-acm/resources/config/acRuntimeParameters.yaml @@ -91,6 +91,9 @@ runtime: - ${topicServer:message-router} topicCommInfrastructure: dmaap useHttps: false + acmParameters: + toscaElementName: {{ .Values.customNaming.toscaElementName }} + toscaCompositionName: {{ .Values.customNaming.toscaCompositionName }} # If Strimzi Kafka to be used for communication, replace clampAutomationCompositionTopics configuration with below # topicParameterGroup: diff --git a/helm/policy/components/policy-clamp-runtime-acm/values.yaml b/helm/policy/components/policy-clamp-runtime-acm/values.yaml index e1669bfb..4966a9b6 100644 --- a/helm/policy/components/policy-clamp-runtime-acm/values.yaml +++ b/helm/policy/components/policy-clamp-runtime-acm/values.yaml @@ -114,3 +114,7 @@ serviceAccount: nameOverride: policy-clamp-runtime-acm roles: - read + +customNaming: + toscaElementName: org.onap.policy.clamp.acm.AutomationCompositionElement + toscaCompositionName: org.onap.policy.clamp.acm.AutomationComposition