rameshiyer27 | 3c3402d | 2021-09-21 15:14:39 +0100 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 2 | # Copyright (C) 2021-2022 Nordix Foundation. |
rameshiyer27 | 3c3402d | 2021-09-21 15:14:39 +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: |
| 20 | security: |
| 21 | user: |
| 22 | name: ${RESTSERVER_USER} |
| 23 | password: ${RESTSERVER_PASSWORD} |
| 24 | security: |
| 25 | enable-csrf: false |
| 26 | |
rameshiyer27 | 3c3402d | 2021-09-21 15:14:39 +0100 | [diff] [blame] | 27 | participant: |
| 28 | intermediaryParameters: |
| 29 | reportingTimeIntervalMs: 120000 |
| 30 | description: Participant Description |
| 31 | participantId: |
| 32 | name: HttpParticipant0 |
| 33 | version: 1.0.0 |
| 34 | participantType: |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 35 | name: org.onap.policy.clamp.acm.HttpParticipant |
rameshiyer27 | 3c3402d | 2021-09-21 15:14:39 +0100 | [diff] [blame] | 36 | version: 2.3.4 |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 37 | clampAutomationCompositionTopics: |
rameshiyer27 | 3c3402d | 2021-09-21 15:14:39 +0100 | [diff] [blame] | 38 | topicSources: |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 39 | - topic: POLICY-ACRUNTIME-PARTICIPANT |
rameshiyer27 | 3c3402d | 2021-09-21 15:14:39 +0100 | [diff] [blame] | 40 | servers: |
| 41 | - ${topicServer:message-router} |
| 42 | topicCommInfrastructure: dmaap |
| 43 | fetchTimeout: 15000 |
| 44 | useHttps: true |
| 45 | topicSinks: |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 46 | - topic: POLICY-ACRUNTIME-PARTICIPANT |
rameshiyer27 | 3c3402d | 2021-09-21 15:14:39 +0100 | [diff] [blame] | 47 | servers: |
| 48 | - ${topicServer:message-router} |
| 49 | topicCommInfrastructure: dmaap |
| 50 | useHttps: true |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 51 | |
| 52 | management: |
| 53 | endpoints: |
| 54 | web: |
| 55 | exposure: |
| 56 | include: health, metrics, prometheus |
| 57 | server: |
| 58 | port: 8084 |
| 59 | servlet: |
| 60 | context-path: /onap/httpparticipant |