blob: 8cefebc825d6f2cf25a8f1512e1ddeeeff7a4ed5 [file] [log] [blame]
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +01001{{/*
Sylvain Desbureaux70070412020-11-09 21:58:48 +01002#
3# ============LICENSE_START=======================================================
4# org.onap.aai
5# ================================================================================
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +01006# Copyright � 2018 AT&T Intellectual Property. All rights reserved.
Sylvain Desbureaux70070412020-11-09 21:58:48 +01007# ================================================================================
8# Licensed under the Apache License, Version 2.0 (the "License");
9# you may not use this file except in compliance with the License.
10# You may obtain a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS,
16# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17# See the License for the specific language governing permissions and
18# limitations under the License.
19# ============LICENSE_END=========================================================
20
21# The following info parameters are being referenced by ajsc6
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010022*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010023info.build.artifact=aai-graphadmin
24info.build.name=resources
25info.build.description=Resources Microservice
26info.build.version=1.2.0
27
28spring.application.name=aai-graphadmin
29spring.jersey.type=filter
30
31spring.main.allow-bean-definition-overriding=true
32server.servlet.context-path=/
33
34spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
35
36spring.profiles.active={{ .Values.config.profiles.active }}
37spring.jersey.application-path=${schema.uri.base.path}
38#The max number of active threads in this pool
39server.tomcat.max-threads=200
40#The minimum number of threads always kept alive
41server.tomcat.min-Spare-Threads=25
42#The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
43server.tomcat.max-idle-time=60000
44
45# If you get an application startup failure that the port is already taken
46# If thats not it, please check if the key-store file path makes sense
47server.local.startpath=aai-graphadmin/src/main/resources/
48server.basic.auth.location=${server.local.startpath}etc/auth/realm.properties
49
50server.port=8449
51server.ssl.enabled-protocols=TLSv1.1,TLSv1.2
52server.ssl.key-store=${server.local.startpath}/etc/auth/{{ .Values.global.config.keystore.filename }}
53server.ssl.key-store-password=password({{ .Values.global.config.keystore.passwd }})
54server.ssl.trust-store=${server.local.startpath}/etc/auth/{{ .Values.global.config.truststore.filename }}
55server.ssl.trust-store-password=password({{ .Values.global.config.truststore.passwd }})
56server.ssl.client-auth=want
57server.ssl.key-store-type=JKS
58
59# JMS bind address host port
60jms.bind.address=tcp://localhost:61649
61dmaap.ribbon.listOfServers=message-router.{{.Release.Namespace}}:3905
62dmaap.ribbon.transportType=https
63
64# Schema related attributes for the oxm and edges
65# Any additional schema related attributes should start with prefix schema
66schema.configuration.location=N/A
67schema.source.name={{ .Values.global.config.schema.source.name }}
68schema.nodes.location=${server.local.startpath}/schema/${schema.source.name}/oxm/
69schema.edges.location=${server.local.startpath}/schema/${schema.source.name}/dbedgerules/
70
71schema.ingest.file=${server.local.startpath}/application.properties
72
73# Schema Version Related Attributes
74
75schema.uri.base.path={{ .Values.global.config.schema.uri.base.path }}
76# Lists all of the versions in the schema
77schema.version.list={{ .Values.global.config.schema.version.list }}
78# Specifies from which version should the depth parameter to default to zero
79schema.version.depth.start={{ .Values.global.config.schema.version.depth }}
80# Specifies from which version should the related link be displayed in response payload
81schema.version.related.link.start={{ .Values.global.config.schema.version.related.link }}
82
83# Specifies from which version should the client see only the uri excluding host info
84# Before this version server base will also be included
85schema.version.app.root.start={{ .Values.global.config.schema.version.app.root }}
86# Specifies from which version should the namespace be changed
87schema.version.namespace.change.start={{ .Values.global.config.schema.version.namespace.change }}
88# Specifies from which version should the client start seeing the edge label in payload
89schema.version.edge.label.start={{ .Values.global.config.schema.version.edge.label }}
90# Specifies the version that the application should default to
91schema.version.api.default={{ .Values.global.config.schema.version.api.default }}
92
93schema.translator.list={{ .Values.global.config.schema.translator.list }}
94schema.service.base.url=https://aai-schema-service.{{ include "common.namespace" . }}:8452/aai/schema-service/v1/
95schema.service.nodes.endpoint=nodes?version=
96schema.service.edges.endpoint=edgerules?version=
97schema.service.versions.endpoint=versions
98schema.service.client={{ .Values.global.config.schema.service.client }}
99
100schema.service.ssl.key-store=${server.local.startpath}/etc/auth/{{ .Values.global.config.keystore.filename }}
101schema.service.ssl.trust-store=${server.local.startpath}/etc/auth/{{ .Values.global.config.truststore.filename }}
102schema.service.ssl.key-store-password=password({{ .Values.global.config.keystore.passwd }})
103schema.service.ssl.trust-store-password=password({{ .Values.global.config.truststore.passwd }})
104
105aperture.rdbmsname=aai_relational
106
107aperture.service.client={{ .Values.global.config.schema.service.client }}
108aperture.service.base.url=http://localhost:8457/aai/aperture
109aperture.service.ssl.key-store=${server.local.startpath}etc/auth/{{ .Values.global.config.keystore.filename }}
110aperture.service.ssl.trust-store=${server.local.startpath}etc/auth/{{ .Values.global.config.truststore.filename }}
111aperture.service.ssl.key-store-password=password({{ .Values.global.config.keystore.passwd }})
112aperture.service.ssl.trust-store-password=password({{ .Values.global.config.truststore.passwd }})
113aperture.service.timeout-in-milliseconds=300000