blob: 499fa96cd5fcd2e815d3b995cfd5e6394137d094 [file] [log] [blame]
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +01001{{/*
Sylvain Desbureaux70070412020-11-09 21:58:48 +01002# Copyright © 2018 Amdocs, Bell Canada, AT&T
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# The following info parameters are being referenced by ajsc6
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010017*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010018info.build.artifact=aai-schema-service
19info.build.name=schema-service
20info.build.description=Schema Service Microservice
21info.build.version=1.1.0
22
23spring.application.name=aai-schema-service
24spring.jersey.type=filter
25
26spring.main.allow-bean-definition-overriding=true
27server.servlet.context-path=/
28
29spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
30
31spring.jersey.application-path=${schema.uri.base.path}
32server.tomcat.max-threads=200
33server.tomcat.min-Spare-Threads=25
34server.tomcat.max-idle-time=60000
35
36server.local.startpath=aai-schema-service/src/main/resources/
37server.basic.auth.location=${server.local.startpath}/etc/auth/realm.properties
38
39server.port=8452
40server.ssl.enabled-protocols=TLSv1.1,TLSv1.2
41server.ssl.key-store=${server.local.startpath}/etc/auth/{{ .Values.global.config.keystore.filename }}
42server.ssl.key-store-password=password({{ .Values.global.config.keystore.passwd }})
43server.ssl.trust-store=${server.local.startpath}/etc/auth/{{ .Values.global.config.truststore.filename }}
44server.ssl.trust-store-password=password({{ .Values.global.config.truststore.passwd }})
45server.ssl.client-auth=want
46server.ssl.key-store-type=JKS
47
48schema.configuration.location=N/A
49schema.source.name={{ .Values.global.config.schema.source.name }}
50schema.nodes.location=${server.local.startpath}/schema/${schema.source.name}/oxm/
51schema.edges.location=${server.local.startpath}/schema/${schema.source.name}/dbedgerules/
52schema.query.location=${server.local.startpath}/schema/${schema.source.name}/query/
53
54schema.ingest.file=${server.local.startpath}/application.properties
55
56# Schema Version Related Attributes
57schema.uri.base.path={{ .Values.global.config.schema.uri.base.path }}/schema-service
58# Lists all of the versions in the schema
59schema.version.list={{ .Values.global.config.schema.version.list }}
60# Specifies from which version should the depth parameter to default to zero
61schema.version.depth.start={{ .Values.global.config.schema.version.depth }}
62# Specifies from which version should the related link be displayed in response payload
63schema.version.related.link.start={{ .Values.global.config.schema.version.related.link }}
64
65# Specifies from which version should the client see only the uri excluding host info
66# Before this version server base will also be included
67schema.version.app.root.start={{ .Values.global.config.schema.version.app.root }}
68# Specifies from which version should the namespace be changed
69schema.version.namespace.change.start={{ .Values.global.config.schema.version.namespace.change }}
70# Specifies from which version should the client start seeing the edge label in payload
71schema.version.edge.label.start={{ .Values.global.config.schema.version.edge.label }}
72# Specifies the version that the application should default to
73schema.version.api.default={{ .Values.global.config.schema.version.api.default }}