blob: 918f9af6cda228d5bf8c8b4bfa639b8f0bea1697 [file] [log] [blame]
aravind.est8d728302022-12-07 12:26:28 +00001# ============LICENSE_START=======================================================
2# Copyright (C) 2022 Nordix Foundation. All rights reserved.
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# http://www.apache.org/licenses/LICENSE-2.0
8
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# SPDX-License-Identifier: Apache-2.0
16# ============LICENSE_END=========================================================
17
18spring:
19 security:
20 user:
21 name: ${RESTSERVER_USER}
22 password: ${RESTSERVER_PASSWORD}
23 autoconfigure:
24 exclude:
25 - org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
26 - org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration
27 - org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration
28 - org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration
29security:
30 enable-csrf: false
31
32participant:
33 intermediaryParameters:
34 reportingTimeIntervalMs: 120000
35 description: Participant Description
36 participantId:
37 name: A1PMSParticipant0
38 version: 1.0.0
39 participantType:
40 name: org.onap.policy.clamp.acm.A1PMSParticipant
41 version: 2.3.4
42 clampAutomationCompositionTopics:
43 topicSources:
44 - topic: POLICY-ACRUNTIME-PARTICIPANT
45 servers:
46 - ${topicServer:message-router}
47 topicCommInfrastructure: dmaap
48 fetchTimeout: 15000
49
50 topicSinks:
51 - topic: POLICY-ACRUNTIME-PARTICIPANT
52 servers:
53 - ${topicServer:message-router}
54 topicCommInfrastructure: dmaap
55
56
57management:
58 endpoints:
59 web:
60 base-path: /
61 exposure:
62 include: health, metrics, prometheus
63server:
64 port: 8086
65 servlet:
66 context-path: /onap/policy/clamp/acm/a1pmsparticipant
67 ssl:
68 enabled: false
69
70