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