1 #  ============LICENSE_START=======================================================
 
   2 #   Copyright (C) 2021-2023 Nordix Foundation.
 
   3 #  ================================================================================
 
   4 #  Licensed under the Apache License, Version 2.0 (the "License");
 
   5 #  you may not use this file except in compliance with the License.
 
   6 #  You may obtain a copy of the License at
 
   8 #       http://www.apache.org/licenses/LICENSE-2.0
 
  10 #  Unless required by applicable law or agreed to in writing, software
 
  11 #  distributed under the License is distributed on an "AS IS" BASIS,
 
  12 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  13 #  See the License for the specific language governing permissions and
 
  14 #  limitations under the License.
 
  16 #  SPDX-License-Identifier: Apache-2.0
 
  17 #  ============LICENSE_END=========================================================
 
  22       org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,
 
  23       org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration,
 
  24       org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration
 
  27       name: ${RESTSERVER_USER}
 
  28       password: ${RESTSERVER_PASSWORD}
 
  34   pdpGroup: defaultGroup
 
  41     password: ${API_PASSWORD}
 
  42     useHttps: {{ (eq "true" (include "common.needTLS" .)) | ternary "true" "false" }}
 
  43     allowSelfSignedCerts: true
 
  49     password: ${PAP_PASSWORD}
 
  50     useHttps: {{ (eq "true" (include "common.needTLS" .)) | ternary "true" "false" }}
 
  51     allowSelfSignedCerts: true
 
  52   intermediaryParameters:
 
  53     reportingTimeIntervalMs: 120000
 
  54     description: Participant Description
 
  55     participantId: 101c62b3-8918-41b9-a747-d21eb79c6c03
 
  56     clampAutomationCompositionTopics:
 
  61           topic: {{ .Values.global.kafkaTopics.acRuntimeTopic.name }}
 
  62           {{ if .Values.global.useStrimziKafka }}
 
  63           topicCommInfrastructure: kafka
 
  65             - {{ include "common.release" . }}-strimzi-kafka-bootstrap:9092
 
  67             group.id: {{ (first .Values.kafkaUser.acls).name }}
 
  68             allow.auto.create.topics: false
 
  69             security.protocol: SASL_PLAINTEXT
 
  70             sasl.mechanism: {{ .Values.kafkaUser.authenticationType | upper }}
 
  71             sasl.jaas.config: ${SASL_JAAS_CONFIG}
 
  73           topicCommInfrastructure: dmaap
 
  75             - ${topicServer:message-router}
 
  81           topic: {{ .Values.global.kafkaTopics.acRuntimeTopic.name }}
 
  82           {{ if .Values.global.useStrimziKafka }}
 
  83           topicCommInfrastructure: kafka
 
  85             - {{ include "common.release" . }}-strimzi-kafka-bootstrap:9092
 
  87             client.id: {{ (first .Values.kafkaUser.acls).name }}-client-id
 
  88             security.protocol: SASL_PLAINTEXT
 
  89             sasl.mechanism: {{ .Values.kafkaUser.authenticationType | upper }}
 
  90             sasl.jaas.config: ${SASL_JAAS_CONFIG}
 
  92           topicCommInfrastructure: dmaap
 
  94             - ${topicServer:message-router}
 
  96     participantSupportedElementTypes:
 
  98         typeName: org.onap.policy.clamp.acm.PolicyAutomationCompositionElement
 
 105         include: health, metrics, prometheus
 
 110     context-path: /onap/policyparticipant
 
 112     enabled: {{ (eq "true" (include "common.needTLS" .)) | ternary true false }}