blob: 7237c565369079bcf43557a7640abbf915fdb984 [file] [log] [blame]
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00001# Copyright © 2018 Amdocs, Bell Canada, AT&T
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
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
vagrant1a3a3552018-03-10 23:56:32 +000015# The following info parameters are being referenced by ajsc6
16info.build.artifact=aai-resources
17info.build.name=resources
18info.build.description=Resources Microservice
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040019info.build.version=1.3.0
vagrant1a3a3552018-03-10 23:56:32 +000020
21spring.application.name=aai-resources
22spring.jersey.type=filter
23
24server.contextPath=/
25spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
26
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040027spring.profiles.active={{ .Values.global.config.profiles.active }}
28spring.jersey.application-path=${schema.uri.base.path}
vagrant1a3a3552018-03-10 23:56:32 +000029#The max number of active threads in this pool
30server.tomcat.max-threads=200
31#The minimum number of threads always kept alive
32server.tomcat.min-Spare-Threads=25
33#The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
34server.tomcat.max-idle-time=60000
35
vagrant1a3a3552018-03-10 23:56:32 +000036# If you get an application startup failure that the port is already taken
37# If thats not it, please check if the key-store file path makes sense
38server.local.startpath=aai-resources/src/main/resources/
39server.basic.auth.location=${server.local.startpath}etc/auth/realm.properties
40
41server.port=8447
42server.ssl.enabled-protocols=TLSv1.1,TLSv1.2
Harish Venkata Kajurcd0d6982019-02-12 23:56:51 -050043server.ssl.key-store=${server.local.startpath}/etc/auth/{{ .Values.global.config.keystore.filename }}
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040044server.ssl.key-store-password=password({{ .Values.global.config.keystore.passwd }})
Harish Venkata Kajurcd0d6982019-02-12 23:56:51 -050045server.ssl.trust-store=${server.local.startpath}/etc/auth/{{ .Values.global.config.truststore.filename }}
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040046server.ssl.trust-store-password=password({{ .Values.global.config.truststore.passwd }})
vagrant1a3a3552018-03-10 23:56:32 +000047server.ssl.client-auth=want
48server.ssl.key-store-type=JKS
49
50# JMS bind address host port
51jms.bind.address=tcp://localhost:61647
Kajur, Harish (vk250x)f7323d32018-09-18 07:05:01 -040052dmaap.ribbon.listOfServers=message-router.{{.Release.Namespace}}:3905
Kajur, Harish (vk250x)1f5d7902018-10-18 12:38:57 -040053dmaap.ribbon.transportType=https
vagrant1a3a3552018-03-10 23:56:32 +000054
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040055# Schema related attributes for the oxm and edges
56# Any additional schema related attributes should start with prefix schema
57schema.configuration.location=N/A
58schema.source.name={{ .Values.global.config.schema.source.name }}
59schema.nodes.location=${server.local.startpath}/schema/${schema.source.name}/oxm/
60schema.edges.location=${server.local.startpath}/schema/${schema.source.name}/dbedgerules/
vagrant1a3a3552018-03-10 23:56:32 +000061
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040062schema.ingest.file=${server.local.startpath}/application.properties
63
64# Schema Version Related Attributes
65
66schema.uri.base.path={{ .Values.global.config.schema.uri.base.path }}
67# Lists all of the versions in the schema
68schema.version.list={{ .Values.global.config.schema.version.list }}
69# Specifies from which version should the depth parameter to default to zero
70schema.version.depth.start={{ .Values.global.config.schema.version.depth }}
71# Specifies from which version should the related link be displayed in response payload
72schema.version.related.link.start={{ .Values.global.config.schema.version.related.link }}
73
74# Specifies from which version should the client see only the uri excluding host info
75# Before this version server base will also be included
76schema.version.app.root.start={{ .Values.global.config.schema.version.app.root }}
77# Specifies from which version should the namespace be changed
78schema.version.namespace.change.start={{ .Values.global.config.schema.version.namespace.change }}
79# Specifies from which version should the client start seeing the edge label in payload
80schema.version.edge.label.start={{ .Values.global.config.schema.version.edge.label }}
81# Specifies the version that the application should default to
82schema.version.api.default={{ .Values.global.config.schema.version.api.default }}
83
Harish Venkata Kajurcd0d6982019-02-12 23:56:51 -050084schema.translator.list={{ .Values.global.config.schema.translator.list }}
85schema.service.base.url=https://aai-schema-service.{{ include "common.namespace" . }}:8452/aai/schema-service/v1/
86schema.service.nodes.endpoint=nodes?version=
87schema.service.edges.endpoint=edgerules?version=
88schema.service.versions.endpoint=versions
89schema.service.client={{ .Values.global.config.schema.service.client }}
90
91schema.service.ssl.key-store=${server.local.startpath}/etc/auth/{{ .Values.global.config.keystore.filename }}
92schema.service.ssl.trust-store=${server.local.startpath}/etc/auth/{{ .Values.global.config.truststore.filename }}
93schema.service.ssl.key-store-password=password({{ .Values.global.config.keystore.passwd }})
94schema.service.ssl.trust-store-password=password({{ .Values.global.config.truststore.passwd }})