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