b9a4ed33a8dc753b86fb5ca45afcb28e067156ef
[oom.git] / kubernetes / policy / components / policy-clamp-be / resources / config / application.properties
1 {{/*
2 ###
3 # ============LICENSE_START=======================================================
4 # ONAP CLAMP
5 # ================================================================================
6 # Copyright (C) 2017-2019 AT&T Intellectual Property. All rights
7 #                             reserved.
8 # ================================================================================
9 # Modifications copyright (c) 2019 Nokia
10 # ================================================================================\
11 # Licensed under the Apache License, Version 2.0 (the "License");
12 # you may not use this file except in compliance with the License.
13 # You may obtain a copy of the License at
14 #
15 # http://www.apache.org/licenses/LICENSE-2.0
16 #
17 # Unless required by applicable law or agreed to in writing, software
18 # distributed under the License is distributed on an "AS IS" BASIS,
19 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 # See the License for the specific language governing permissions and
21 # limitations under the License.
22 # ============LICENSE_END============================================
23 # ===================================================================
24 #
25 ###
26 */}}
27 {{- if .Values.global.aafEnabled }}
28 server.ssl.key-store=file:{{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.keystoreFile }}
29 server.ssl.key-store-password=${cadi_keystore_password_p12}
30 server.ssl.key-password=${cadi_key_password}
31 server.ssl.key-store-type=PKCS12
32 server.ssl.key-alias={{ .Values.certInitializer.fqi }}
33
34 # The key file used to decode the key store and trust store password
35 # If not defined, the key store and trust store password will not be decrypted
36 clamp.config.keyFile=file:{{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.keyFile }}
37
38 ## Config part for Client certificates
39 server.ssl.client-auth=want
40 server.ssl.trust-store=file:{{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.truststoreFile }}
41 server.ssl.trust-store-password=${cadi_truststore_password}
42 {{- end }}
43
44 #clds datasource connection details
45 spring.datasource.username=${MYSQL_USER}
46 spring.datasource.password=${MYSQL_PASSWORD}
47 spring.datasource.url=jdbc:mariadb:sequential://{{ .Values.db.service.name }}:{{ .Values.db.service.internalPort }}/policyclamp?autoReconnect=true&connectTimeout=10000&socketTimeout=10000&retriesAllDown=3
48 spring.profiles.active=clamp-default,clamp-aaf-authentication,clamp-sdc-controller,clamp-ssl-config,clamp-policy-controller,default-dictionary-elements
49
50 #The log folder that will be used in logback.xml file
51 clamp.config.files.sdcController=file:/opt/policy/clamp/sdc-controllers-config-pass.json
52
53 #
54 # Configuration Settings for Policy Engine Components
55 clamp.config.policy.api.url=https://policy-api.{{ include "common.namespace" . }}:6969
56 clamp.config.policy.api.userName=policyadmin
57 clamp.config.policy.api.password=zb!XztG34
58 clamp.config.policy.pap.url=https://policy-pap.{{ include "common.namespace" . }}:6969
59 clamp.config.policy.pap.userName=policyadmin
60 clamp.config.policy.pap.password=zb!XztG34
61
62 #DCAE Inventory Url Properties
63 clamp.config.dcae.inventory.url=https://inventory.{{ include "common.namespace" . }}:8080
64 clamp.config.dcae.dispatcher.url=https://deployment-handler.{{ include "common.namespace" . }}:8443
65 #DCAE Deployment Url Properties
66 clamp.config.dcae.deployment.url=https://deployment-handler.{{ include "common.namespace" . }}:8443
67 clamp.config.dcae.deployment.userName=none
68 clamp.config.dcae.deployment.password=none
69
70 #AAF related parameters
71 clamp.config.cadi.aafLocateUrl=https://aaf-locate.{{ include "common.namespace" . }}:8095
72
73 # Configuration settings for ControlLoop Runtime Rest API
74 clamp.config.controlloop.runtime.url=https://policy-clamp-cl-runtime.{{ include "common.namespace" . }}:6969
75 clamp.config.controlloop.runtime.userName=${RUNTIME_USER}
76 clamp.config.controlloop.runtime.password=${RUNTIME_PASSWORD}
77