blob: 37d02a0629901641f5b2f6792b251efb72570873 [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 Desbureauxc57b58d2021-02-23 18:07:34 +01007# Modifications Copyright © 2021 Orange
efiacord12c1672023-03-23 12:10:50 +00008# Modifications Copyright © 2023 Nordix Foundation
Sylvain Desbureaux70070412020-11-09 21:58:48 +01009# ================================================================================
10# Licensed under the Apache License, Version 2.0 (the "License");
11# you may not use this file except in compliance with the License.
12# You may obtain a copy of the License at
13#
14# http://www.apache.org/licenses/LICENSE-2.0
15#
16# Unless required by applicable law or agreed to in writing, software
17# distributed under the License is distributed on an "AS IS" BASIS,
18# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19# See the License for the specific language governing permissions and
20# limitations under the License.
21# ============LICENSE_END=========================================================
22
23# The following info parameters are being referenced by ajsc6
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010024*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010025info.build.artifact=aai-graphadmin
26info.build.name=resources
27info.build.description=Resources Microservice
28info.build.version=1.2.0
29
30spring.application.name=aai-graphadmin
31spring.jersey.type=filter
32
33spring.main.allow-bean-definition-overriding=true
34server.servlet.context-path=/
35
36spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
37
efiacord12c1672023-03-23 12:10:50 +000038spring.profiles.active={{ .Values.config.profiles.active }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010039spring.jersey.application-path=${schema.uri.base.path}
40#The max number of active threads in this pool
41server.tomcat.max-threads=200
42#The minimum number of threads always kept alive
43server.tomcat.min-Spare-Threads=25
44#The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
45server.tomcat.max-idle-time=60000
46
47# If you get an application startup failure that the port is already taken
48# If thats not it, please check if the key-store file path makes sense
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +010049server.local.startpath=/opt/app/aai-graphadmin/resources/
Sylvain Desbureaux70070412020-11-09 21:58:48 +010050server.basic.auth.location=${server.local.startpath}etc/auth/realm.properties
51
52server.port=8449
osk1146127fd7d82021-06-18 00:51:17 +020053security.require-ssl=false
54server.ssl.enabled=false
Sylvain Desbureaux70070412020-11-09 21:58:48 +010055
56# JMS bind address host port
57jms.bind.address=tcp://localhost:61649
efiacord12c1672023-03-23 12:10:50 +000058dmaap.ribbon.listOfServers=message-router.{{ include "common.namespace" . }}:3904
59dmaap.ribbon.transportType=http
Sylvain Desbureaux70070412020-11-09 21:58:48 +010060
61# Schema related attributes for the oxm and edges
62# Any additional schema related attributes should start with prefix schema
63schema.configuration.location=N/A
64schema.source.name={{ .Values.global.config.schema.source.name }}
65schema.nodes.location=${server.local.startpath}/schema/${schema.source.name}/oxm/
66schema.edges.location=${server.local.startpath}/schema/${schema.source.name}/dbedgerules/
67
68schema.ingest.file=${server.local.startpath}/application.properties
69
70# Schema Version Related Attributes
71
72schema.uri.base.path={{ .Values.global.config.schema.uri.base.path }}
73# Lists all of the versions in the schema
74schema.version.list={{ .Values.global.config.schema.version.list }}
75# Specifies from which version should the depth parameter to default to zero
76schema.version.depth.start={{ .Values.global.config.schema.version.depth }}
77# Specifies from which version should the related link be displayed in response payload
78schema.version.related.link.start={{ .Values.global.config.schema.version.related.link }}
79
80# Specifies from which version should the client see only the uri excluding host info
81# Before this version server base will also be included
82schema.version.app.root.start={{ .Values.global.config.schema.version.app.root }}
83# Specifies from which version should the namespace be changed
84schema.version.namespace.change.start={{ .Values.global.config.schema.version.namespace.change }}
85# Specifies from which version should the client start seeing the edge label in payload
86schema.version.edge.label.start={{ .Values.global.config.schema.version.edge.label }}
87# Specifies the version that the application should default to
88schema.version.api.default={{ .Values.global.config.schema.version.api.default }}
89
90schema.translator.list={{ .Values.global.config.schema.translator.list }}
osk1146127fd7d82021-06-18 00:51:17 +020091schema.service.base.url={{ include "common.scheme" . }}://aai-schema-service.{{ include "common.namespace" . }}:8452/aai/schema-service/v1/
Sylvain Desbureaux70070412020-11-09 21:58:48 +010092schema.service.nodes.endpoint=nodes?version=
93schema.service.edges.endpoint=edgerules?version=
94schema.service.versions.endpoint=versions
efiacord12c1672023-03-23 12:10:50 +000095schema.service.client=no-auth
Sylvain Desbureaux70070412020-11-09 21:58:48 +010096
Sylvain Desbureaux70070412020-11-09 21:58:48 +010097
98aperture.rdbmsname=aai_relational
99
efiacord12c1672023-03-23 12:10:50 +0000100aperture.service.client=no-auth
osk1146127fd7d82021-06-18 00:51:17 +0200101
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100102aperture.service.base.url=http://localhost:8457/aai/aperture
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100103aperture.service.timeout-in-milliseconds=300000
leila46fb5802022-11-15 11:33:21 -0500104
105#To Expose the Prometheus scraping endpoint
106management.port=8448
107endpoints.enabled=false
108management.security.enabled=false