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