Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / so / components / so-catalog-db-adapter / resources / config / overrides / override.yaml
1 {{/*
2 # Copyright © 2018 AT&T USA
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 server:
17     {{- if include "common.onServiceMesh" . }}
18     forward-headers-strategy: none
19     {{- end }}
20     port: {{ index .Values.containerPort }}
21     tomcat:
22         max-threads: 50
23 ssl-enable: false
24 mso:
25   logPath: logs
26   site-name: onapheat
27   catalog:
28     db:
29       spring:
30         endpoint: http://so-catalog-db-adapter.{{ include "common.namespace" . }}:8082
31   db:
32     auth:  {{ .Values.mso.adapters.db.auth }}
33 spring:
34   datasource:
35     hikari:
36       jdbcUrl: jdbc:mariadb://${DB_HOST}:${DB_PORT}/catalogdb
37       username: ${DB_USERNAME}
38       password: ${DB_PASSWORD}
39       driver-class-name: org.mariadb.jdbc.Driver
40       pool-name: catdb-pool
41       registerMbeans: true
42   security:
43     usercredentials:
44     -
45       username: bpel
46       password: '$2a$10$Fh9ffgPw2vnmsghsRD3ZauBL1aKXebigbq3BB1RPWtE62UDILsjke'
47       role: BPEL-Client
48     -
49       username: mso_admin
50       password: '$2a$10$Fh9ffgPw2vnmsghsRD3ZauBL1aKXebigbq3BB1RPWtE62UDILsjke'
51       role: ACTUATOR
52 #Actuator
53 management:
54   context-path: /manage
55 cloud_config:
56   identity_services:
57     RAX_KEYSTONE:
58       identity_url: "https://identity.api.rackspacecloud.com/v2.0"
59       mso_id: "RACKSPACE_ACCOUNT_ID"
60       mso_pass: "RACKSPACE_ACCOUNT_APIKEY"
61       admin_tenant: "{{ .Values.config.openStackServiceTenantName }}"
62       member_role: "admin"
63       tenant_metadata: true
64       identity_server_type: "KEYSTONE"
65       identity_authentication_type: "RACKSPACE_APIKEY"
66       project_domain_name: "PROJECT_DOMAIN_NAME"
67       user_domain_name: "USER_DOMAIN_NAME"
68     DEFAULT_KEYSTONE:
69       identity_url: "{{ .Values.config.openStackKeyStoneUrl }}"
70       mso_id: "{{ .Values.config.openStackUserName }}"
71       mso_pass: "{{ .Values.config.openStackEncryptedPasswordHere }}"
72       admin_tenant: "{{ .Values.config.openStackServiceTenantName }}"
73       member_role: "admin"
74       tenant_metadata: true
75       identity_server_type: "{{ .Values.config.openStackKeystoneVersion }}"
76       identity_authentication_type: "USERNAME_PASSWORD"
77       project_domain_name: "{{ .Values.config.openStackProjectDomainName }}"
78       user_domain_name: "{{ .Values.config.openStackUserDomainName }}"
79   cloud_sites:
80     Dallas:
81       region_id: "DFW"
82       clli: "DFW"
83       aic_version: "2.5"
84       identity_service_id: "RAX_KEYSTONE"
85     Northern Virginia:
86       region_id: "IAD"
87       clli: "IAD"
88       aic_version: "2.5"
89       identity_service_id: "RAX_KEYSTONE"
90     Chicago:
91       region_id: "ORD"
92       clli: "ORD"
93       aic_version: "2.5"
94       identity_service_id: "RAX_KEYSTONE"
95     RegionOne:
96       region_id: "RegionOne"
97       clli: "RegionOne"
98       aic_version: "2.5"
99       identity_service_id: "DEFAULT_KEYSTONE"
100     DEFAULT:
101       region_id: "{{ .Values.config.openStackRegion }}"
102       clli: "{{ .Values.config.openStackRegion }}"
103       aic_version: "2.5"
104       identity_service_id: "DEFAULT_KEYSTONE"