rameshiyer27 | ff17665 | 2021-09-21 15:19:05 +0100 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
efiacor | 6910bbe | 2023-03-03 14:53:16 +0000 | [diff] [blame] | 2 | # Copyright (C) 2021-2023 Nordix Foundation. |
rameshiyer27 | ff17665 | 2021-09-21 15:19:05 +0100 | [diff] [blame] | 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 |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 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. |
| 15 | # |
| 16 | # SPDX-License-Identifier: Apache-2.0 |
| 17 | # ============LICENSE_END========================================================= |
| 18 | |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 19 | spring: |
liamfallon | 72ffede | 2022-10-20 11:19:18 +0100 | [diff] [blame] | 20 | autoconfigure: |
| 21 | exclude: > |
| 22 | org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration, |
| 23 | org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration, |
| 24 | org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 25 | security: |
| 26 | user: |
| 27 | name: ${RESTSERVER_USER} |
| 28 | password: ${RESTSERVER_PASSWORD} |
Sirisha_Manchikanti | 73c5f00 | 2022-07-25 17:04:45 +0100 | [diff] [blame] | 29 | |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 30 | security: |
| 31 | enable-csrf: false |
| 32 | |
rameshiyer27 | ff17665 | 2021-09-21 15:19:05 +0100 | [diff] [blame] | 33 | participant: |
| 34 | pdpGroup: defaultGroup |
| 35 | pdpType: apex |
| 36 | policyApiParameters: |
| 37 | clientName: api |
| 38 | hostname: policy-api |
| 39 | port: 6969 |
| 40 | userName: ${API_USER} |
| 41 | password: ${API_PASSWORD} |
Andreas Geissler | f10c555 | 2023-03-21 18:09:46 +0100 | [diff] [blame] | 42 | useHttps: "false" |
rameshiyer27 | ff17665 | 2021-09-21 15:19:05 +0100 | [diff] [blame] | 43 | allowSelfSignedCerts: true |
| 44 | policyPapParameters: |
| 45 | clientName: pap |
| 46 | hostname: policy-pap |
| 47 | port: 6969 |
| 48 | userName: ${PAP_USER} |
| 49 | password: ${PAP_PASSWORD} |
Andreas Geissler | f10c555 | 2023-03-21 18:09:46 +0100 | [diff] [blame] | 50 | useHttps: "false" |
rameshiyer27 | ff17665 | 2021-09-21 15:19:05 +0100 | [diff] [blame] | 51 | allowSelfSignedCerts: true |
| 52 | intermediaryParameters: |
| 53 | reportingTimeIntervalMs: 120000 |
| 54 | description: Participant Description |
saul.gill | 5e61140 | 2023-03-02 11:49:23 +0000 | [diff] [blame] | 55 | participantId: 101c62b3-8918-41b9-a747-d21eb79c6c03 |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 56 | clampAutomationCompositionTopics: |
rameshiyer27 | ff17665 | 2021-09-21 15:19:05 +0100 | [diff] [blame] | 57 | topicSources: |
| 58 | - |
efiacor | 6910bbe | 2023-03-03 14:53:16 +0000 | [diff] [blame] | 59 | useHttps: false |
| 60 | fetchTimeout: 15000 |
| 61 | topic: {{ .Values.global.kafkaTopics.acRuntimeTopic.name }} |
efiacor | 6910bbe | 2023-03-03 14:53:16 +0000 | [diff] [blame] | 62 | topicCommInfrastructure: kafka |
| 63 | servers: |
rameshiyer27 | bc8a6a4 | 2024-03-11 17:18:11 +0000 | [diff] [blame] | 64 | - {{ include "common.release" . }}-{{ .Values.global.kafkaBootstrap }} |
efiacor | 6910bbe | 2023-03-03 14:53:16 +0000 | [diff] [blame] | 65 | additionalProps: |
| 66 | group.id: {{ (first .Values.kafkaUser.acls).name }} |
| 67 | allow.auto.create.topics: false |
| 68 | security.protocol: SASL_PLAINTEXT |
| 69 | sasl.mechanism: {{ .Values.kafkaUser.authenticationType | upper }} |
| 70 | sasl.jaas.config: ${SASL_JAAS_CONFIG} |
rameshiyer27 | ff17665 | 2021-09-21 15:19:05 +0100 | [diff] [blame] | 71 | topicSinks: |
| 72 | - |
efiacor | 6910bbe | 2023-03-03 14:53:16 +0000 | [diff] [blame] | 73 | useHttps: false |
| 74 | fetchTimeout: 15000 |
| 75 | topic: {{ .Values.global.kafkaTopics.acRuntimeTopic.name }} |
efiacor | 6910bbe | 2023-03-03 14:53:16 +0000 | [diff] [blame] | 76 | topicCommInfrastructure: kafka |
| 77 | servers: |
rameshiyer27 | bc8a6a4 | 2024-03-11 17:18:11 +0000 | [diff] [blame] | 78 | - {{ include "common.release" . }}-{{ .Values.global.kafkaBootstrap }} |
efiacor | 6910bbe | 2023-03-03 14:53:16 +0000 | [diff] [blame] | 79 | additionalProps: |
| 80 | client.id: {{ (first .Values.kafkaUser.acls).name }}-client-id |
| 81 | security.protocol: SASL_PLAINTEXT |
| 82 | sasl.mechanism: {{ .Values.kafkaUser.authenticationType | upper }} |
| 83 | sasl.jaas.config: ${SASL_JAAS_CONFIG} |
saul.gill | 5e61140 | 2023-03-02 11:49:23 +0000 | [diff] [blame] | 84 | participantSupportedElementTypes: |
| 85 | - |
| 86 | typeName: org.onap.policy.clamp.acm.PolicyAutomationCompositionElement |
| 87 | typeVersion: 1.0.0 |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 88 | |
| 89 | management: |
| 90 | endpoints: |
| 91 | web: |
| 92 | exposure: |
| 93 | include: health, metrics, prometheus |
| 94 | |
| 95 | server: |
| 96 | port: 8085 |
| 97 | servlet: |
| 98 | context-path: /onap/policyparticipant |
amatthews | 736bf37 | 2021-12-14 16:04:15 +0000 | [diff] [blame] | 99 | ssl: |
Andreas Geissler | f10c555 | 2023-03-21 18:09:46 +0100 | [diff] [blame] | 100 | enabled: false |