blob: 2de316a727711cd7ab598d07e640b8e421e481a4 [file] [log] [blame]
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +00001# Copyright © 2018 AT&T USA
seshukm0df1f8e2020-08-17 21:45:49 +05302# Copyright © 2020 Huawei
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +00003# 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.
jmacc4f04d32018-10-12 18:24:24 +000014#################################################################
15# Global configuration defaults.
16#################################################################
17global:
18 nodePortPrefix: 302
19 nodePortPrefixExt: 304
20 repository: nexus3.onap.org:10001
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020021 readinessImage: onap/oom/readiness:3.0.1
seshukm0df1f8e2020-08-17 21:45:49 +053022 aafAgentImage: onap/aaf/aaf_agent:2.1.20
23 envsubstImage: dibi/envsubst
jmacc4f04d32018-10-12 18:24:24 +000024 persistence:
25 mountPath: /dockerdata-nfs
seshukm0df1f8e2020-08-17 21:45:49 +053026 security:
27 aaf:
28 enabled: false
29 aaf:
30 auth:
31 encrypted: 3EDC974C5CD7FE54C47C7490AF4D3B474CDD7D0FFA35A7ACDE3E209631E45F428976EAC0858874F17390A13149E63C90281DD8D20456
krishnaa9692b606b2020-10-30 11:29:21 +053032 mariadbGalera:
33 serviceName: mariadb-galera
34 servicePort: '3306'
jmacc4f04d32018-10-12 18:24:24 +000035
Sylvain Desbureauxd055a172020-10-30 14:32:03 +010036readinessCheck:
37 wait_for:
38 - so-mariadb-config
39
jmacc4f04d32018-10-12 18:24:24 +000040#################################################################
Krzysztof Opasiak2cf35502020-03-24 23:01:38 +010041# Secrets metaconfig
42#################################################################
43secrets:
44 - uid: db-user-creds
45 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010046 externalSecret: '{{ tpl (default "" .Values.db.userCredsExternalSecret) . }}'
Krzysztof Opasiak2cf35502020-03-24 23:01:38 +010047 login: '{{ .Values.db.userName }}'
48 password: '{{ .Values.db.userPassword }}'
49 passwordPolicy: required
50 - uid: db-admin-creds
51 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010052 externalSecret: '{{ tpl (default "" .Values.db.adminCredsExternalSecret) . }}'
Krzysztof Opasiak2cf35502020-03-24 23:01:38 +010053 login: '{{ .Values.db.adminName }}'
54 password: '{{ .Values.db.adminPassword }}'
55 passwordPolicy: required
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010056
57#secretsFilePaths: |
58# - 'my file 1'
59# - '{{ include "templateThatGeneratesFileName" . }}'
Krzysztof Opasiak2cf35502020-03-24 23:01:38 +010060
61#################################################################
jmacc4f04d32018-10-12 18:24:24 +000062# Application configuration defaults.
63#################################################################
seshukm4c285fc2020-10-16 15:45:14 +053064image: onap/so/openstack-adapter:1.7.9
jmacc4f04d32018-10-12 18:24:24 +000065pullPolicy: Always
66repository: nexus3.onap.org:10001
67
Krzysztof Opasiak2cf35502020-03-24 23:01:38 +010068db:
69 userName: so_user
70 userPassword: so_User123
71 # userCredsExternalSecret: some secret
72 adminName: so_admin
73 adminPassword: so_Admin123
74 # adminCredsExternalSecret: some secret
75
seshukm0df1f8e2020-08-17 21:45:49 +053076aai:
77 auth: 2A11B07DB6214A839394AA1EC5844695F5114FC407FF5422625FB00175A3DCB8A1FF745F22867EFA72D5369D599BBD88DA8BED4233CF5586
78aaf:
79 auth:
80 encrypted: 7F182B0C05D58A23A1C4966B9CDC9E0B8BC5CD53BC8C7B4083D869F8D53E9BDC3EFD55C94B1D3F
81org:
82 onap:
83 so:
84 adapters:
85 bpelauth: D1A67FA93B6A6419132D0F83CC771AF774FD3C60853C50C22C8C6FC5088CC79E9E81EDE9EA39F22B2F66A0068E
86mso:
87 msoKey: 07a7159d3bf51a0e53be7a8f89699be7
88 basicUser: poBpmn
89 auth: BEA8637716A7EB617DF472BA6552D22F68C1CB17B0D094D77DDA562F4ADAAC4457CAB848E1A4
90 db:
91 auth: Basic YnBlbDpwYXNzd29yZDEk
92
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000093replicaCount: 1
94minReadySeconds: 10
seshukm0df1f8e2020-08-17 21:45:49 +053095containerPort: &containerPort 8087
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000096logPath: ./logs/openstack/
97app: openstack-adapter
98service:
99 type: ClusterIP
seshukm0df1f8e2020-08-17 21:45:49 +0530100 internalPort: *containerPort
101 externalPort: *containerPort
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000102 portName: so-optack-port
103updateStrategy:
104 type: RollingUpdate
105 maxUnavailable: 1
106 maxSurge: 1
seshukm0df1f8e2020-08-17 21:45:49 +0530107
108#################################################################
109# soHelper part
110#################################################################
111soHelpers:
112 nameOverride: so-openstack-cert-init
113 certInitializer:
114 nameOverride: so-openstack-cert-init
115 credsPath: /opt/app/osaaf/local
116 cadi:
117 apiEnforcement: org.onap.so.openStackAdapterPerm
118 containerPort: *containerPort
119
vaibhav16dec0da88292018-08-13 06:10:27 +0000120# Resource Limit flavor -By Default using small
121flavor: small
122# Segregation for Different environment (Small and Large)
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000123resources:
vaibhav16dec0da88292018-08-13 06:10:27 +0000124 small:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000125 limits:
126 memory: 4Gi
127 cpu: 2000m
vaibhav16dec0da88292018-08-13 06:10:27 +0000128 requests:
129 memory: 1Gi
130 cpu: 500m
131 large:
132 limits:
133 memory: 8Gi
134 cpu: 4000m
135 requests:
136 memory: 2Gi
137 cpu: 1000m
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000138 unlimited: {}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000139livenessProbe:
140 path: /manage/health
141 port: 8087
142 scheme: HTTP
143 initialDelaySeconds: 600
144 periodSeconds: 60
145 timeoutSeconds: 10
146 successThreshold: 1
147 failureThreshold: 3
148ingress:
149 enabled: false
Ramesh Parthasarathyc98749e2018-10-11 21:06:37 +0000150config:
151 openStackUserName: "vnf_user"
152 openStackRegion: "RegionOne"
153 openStackKeyStoneUrl: "http://1.2.3.4:5000/v2.0"
154 openStackServiceTenantName: "service"
155 openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
156 openStackTenantId: "d570c718cbc545029f40e50b75eb13df"
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000157nodeSelector: {}
158tolerations: []
159affinity: {}