Merge "[SO] Disable SO-VE-VNFM per default"
[oom.git] / kubernetes / so / values.yaml
1 # Copyright © 2018 AT&T USA
2 # Copyright © 2020 Huawei
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 # Global configuration defaults.
16 #################################################################
17 global:
18   nodePortPrefix: 302
19   nodePortPrefixExt: 304
20   repository: nexus3.onap.org:10001
21   readinessImage: onap/oom/readiness:3.0.1
22   loggingRepository: docker.elastic.co
23   loggingImage: beats/filebeat:5.5.0
24   soBaseImage: onap/so/base-image:1.0
25   aafAgentImage: onap/aaf/aaf_agent:2.1.20
26   mariadbGalera:
27     nameOverride: mariadb-galera
28     serviceName: mariadb-galera
29     servicePort: '3306'
30     service: mariadb-galera
31     internalPort: '3306'
32     # mariadbRootPassword: secretpassword
33     # rootPasswordExternalSecret: some secret
34     #This flag allows SO to instantiate its own mariadb-galera cluster,
35     #serviceName and nameOverride should be so-mariadb-galera if this flag is enabled
36     localCluster: false
37   persistence:
38     mountPath: /dockerdata-nfs
39   #This configuration specifies Service and port for SDNC OAM interface
40   sdncOamService: sdnc-oam
41   sdncOamPort: 8282
42   #This configuration will run the migration. The configurations are for backing up the data
43   #from DB and then restoring it to the present versions preferred DB.
44   migration:
45     enabled: false
46     dbHost: mariadb-galera
47     dbPort: 3306
48     dbUser: root
49     dbPassword: secretpassword
50     # dbCredsExternalSecret: some secret
51   msbEnabled: true
52   security:
53     aaf:
54       enabled: false
55   aaf:
56     auth:
57       header: Basic c29Ac28ub25hcC5vcmc6ZGVtbzEyMzQ1Ngo=
58       encrypted: 3EDC974C5CD7FE54C47C7490AF4D3B474CDD7D0FFA35A7ACDE3E209631E45F428976EAC0858874F17390A13149E63C90281DD8D20456
59   app:
60     siteName: onapheat
61     auth: 3EDC974C5CD7FE54C47C7490AF4D3B474CDD7D0FFA35A7ACDE3E209631E45F428976EAC0858874F17390A13149E63C90281DD8D20456
62     defaultCloudOwner: onap
63     msoKey: 07a7159d3bf51a0e53be7a8f89699be7
64   client:
65     certs:
66       truststore: /app/client/org.onap.so.trust.jks
67       keystore: /app/client/org.onap.so.jks
68       trustStorePassword: LHN4Iy5DKlcpXXdWZ0pDNmNjRkhJIzpI
69       keyStorePassword: c280b25hcA==
70   certificates:
71     path: /etc/ssl/certs
72     share_path: /usr/local/share/ca-certificates/
73
74 readinessCheck:
75   wait_for:
76     - so-mariadb-config
77
78 #################################################################
79 # Secrets metaconfig
80 #################################################################
81 secrets:
82   - uid: db-root-pass
83     name: &dbRootPassSecretName '{{ include "common.release" . }}-so-db-root-pass'
84     type: password
85     externalSecret: '{{ ternary .Values.global.mariadbGalera.rootPasswordExternalSecret (default (include "common.mariadb.secret.rootPassSecretName" (dict "dot" . "chartName" .Values.global.mariadbGalera.nameOverride)) .Values.global.mariadbGalera.rootPasswordExternalSecret) .Values.global.mariadbGalera.localCluster }}'
86     password: '{{ .Values.global.mariadbGalera.mariadbRootpassword }}'
87   - uid: db-backup-creds
88     name: &dbBackupCredsSecretName '{{ include "common.release" . }}-so-db-backup-creds'
89     type: basicAuth
90     externalSecret: '{{ ternary .Values.global.migration.dbCredsExternalSecret "migrationDisabled" .Values.global.migration.enabled }}'
91     login: '{{ ternary .Values.global.migration.dbUser "migrationDisabled" .Values.global.migration.enabled }}'
92     password: '{{ ternary .Values.global.migration.dbPassword "migrationDisabled" .Values.global.migration.enabled }}'
93     passwordPolicy: required
94     annotations:
95       helm.sh/hook: pre-upgrade,pre-install
96       helm.sh/hook-weight: '0'
97       helm.sh/hook-delete-policy: before-hook-creation
98   - uid: db-user-creds
99     name: &dbUserCredsSecretName '{{ include "common.release" . }}-so-db-user-creds'
100     type: basicAuth
101     externalSecret: '{{ .Values.dbCreds.userCredsExternalSecret }}'
102     login: '{{ .Values.dbCreds.userName }}'
103     password: '{{ .Values.dbCreds.userPassword }}'
104     passwordPolicy: generate
105   - uid: db-admin-creds
106     name: &dbAdminCredsSecretName '{{ include "common.release" . }}-so-db-admin-creds'
107     type: basicAuth
108     externalSecret: '{{ .Values.dbCreds.adminCredsExternalSecret }}'
109     login: '{{ .Values.dbCreds.adminName }}'
110     password: '{{ .Values.dbCreds.adminPassword }}'
111     passwordPolicy: generate
112   - uid: 'so-onap-certs'
113     name: &so-certs '{{ include "common.release" . }}-so-certs'
114     externalSecret: '{{ tpl (default "" .Values.certSecret) . }}'
115     type: generic
116     filePaths:
117       - resources/config/certificates/msb-ca.crt
118   - uid: "mso-key"
119     name: &mso-key '{{ include "common.release" . }}-mso-key'
120     type: password
121     password: '{{ .Values.global.app.msoKey }}'
122   - uid: mso-oof-auth
123     name: &mso-oof-auth '{{ include "common.release" . }}-mso-oof-auth'
124     type: basicAuth
125     login: '{{ .Values.mso.oof.login }}'
126     password: '{{ .Values.mso.oof.password }}'
127     passwordPolicy: required
128
129 aafConfig:
130   permission_user: 1000
131   permission_group: 999
132
133 aaf:
134   trustore: org.onap.so.trust.jks
135
136 #################################################################
137 # Application configuration defaults.
138 #################################################################
139
140 dbSecrets: &dbSecrets
141   userCredsExternalSecret: *dbUserCredsSecretName
142   adminCredsExternalSecret: *dbAdminCredsSecretName
143
144 # unused in this, just to pass to subcharts
145 dbCreds:
146   userName: so_user
147   adminName: so_admin
148
149 repository: nexus3.onap.org:10001
150 image: onap/so/api-handler-infra:1.6.4
151 pullPolicy: Always
152 replicaCount: 1
153 minReadySeconds: 10
154 containerPort: &containerPort 8080
155 logPath: ./logs/apih/
156 app: api-handler-infra
157 service:
158   type: NodePort
159   nodePort: 77
160   internalPort: *containerPort
161   externalPort: *containerPort
162   portName: so-apih-port
163 updateStrategy:
164   type: RollingUpdate
165   maxUnavailable: 1
166   maxSurge: 1
167
168 #################################################################
169 # soHelpers part
170 #################################################################
171 soHelpers:
172   nameOverride: so-apih-cert-init
173   certInitializer:
174     nameOverride: so-apih-cert-init
175   credsPath: /opt/app/osaaf/local
176   certSecret: *so-certs
177   containerPort: *containerPort
178
179 # Resource Limit flavor -By Default using small
180 flavor: small
181 # Segregation for Different environment (Small and Large)
182 persistence:
183   certificatesPath: /certificates
184 resources:
185   small:
186     limits:
187       cpu: 2000m
188       memory: 4Gi
189     requests:
190       cpu: 500m
191       memory: 1Gi
192   large:
193     limits:
194       cpu: 4000m
195       memory: 8Gi
196     requests:
197       cpu: 1000m
198       memory: 2Gi
199   unlimited: {}
200
201 nodeSelector: {}
202 affinity: {}
203
204 # application configuration
205 config:
206   logstashServiceName: log-ls
207   logstashPort: 5044
208
209 #Used only if localCluster is enabled. Instantiates SO's own cassandra cluster
210 #helm deploy demo local/onap --namespace onap --verbose --set so.enabled=true \
211 #                                                       --set so.global.mariadbGalera.localCluster=true \
212 #                                                       --set so.global.mariadbGalera.nameOverride=so-mariadb-galera \
213 #                                                       --set so.global.mariadbGalera.serviceName=so-mariadb-galera
214 mariadb-galera:
215   config:
216     mariadbRootPasswordExternalSecret: *dbRootPassSecretName
217   nameOverride: so-mariadb-galera
218   replicaCount: 1
219   service:
220     name: so-mariadb-galera
221   persistence:
222     mountSubPath: so/mariadb-galera/data
223     enabled: true
224
225 ingress:
226   enabled: false
227   service:
228     - baseaddr: 'so.api'
229       name: 'so'
230       port: 8080
231   config:
232     ssl: 'none'
233
234 mso:
235   adapters:
236     requestDb:
237       auth: Basic YnBlbDpwYXNzd29yZDEk
238   camundaAuth: AE2E9BE6EF9249085AF98689C4EE087736A5500629A72F35068FFB88813A023581DD6E765071F1C04075B36EA4213A
239   sdc:
240     client:
241       auth: 878785F4F31BC9CFA5AB52A172008212D8845ED2DE08AD5E56AF114720A4E49768B8F95CDA2EB971765D28EDCDAA24
242   aai:
243     auth: 6E081E10B1CA43A843E303733A74D9B23B601A6E22A21C7EF2C7F15A42F81A1A4E85E65268C2661F71321052C7F3E55B96A8E1E951F8BF6F
244   oof:
245     login: test
246     password: testpwd
247   so:
248     operationalEnv:
249       dmaap:
250         auth: 51EA5414022D7BE536E7516C4D1A6361416921849B72C0D6FC1C7F262FD9F2BBC2AD124190A332D9845A188AD80955567A4F975C84C221EEA8243BFD92FFE6896CDD1EA16ADD34E1E3D47D4A
251   health:
252     auth: basic bXNvX2FkbWlufHBhc3N3b3JkMSQ=
253
254 so-appc-orchestrator:
255   enabled: false
256   db:
257     <<: *dbSecrets
258
259 so-bpmn-infra:
260   db:
261     <<: *dbSecrets
262
263 so-catalog-db-adapter:
264   enabled: true
265   db:
266     <<: *dbSecrets
267
268 so-etsi-nfvo-ns-lcm:
269   enabled: true
270   db:
271     <<: *dbSecrets
272
273 so-monitoring:
274   enabled: true
275   db:
276     <<: *dbSecrets
277
278 so-openstack-adapter:
279   enabled: true
280   db:
281     <<: *dbSecrets
282
283 so-request-db-adapter:
284   db:
285     <<: *dbSecrets
286
287 so-sdc-controller:
288   db:
289     <<: *dbSecrets
290
291 so-sdnc-adapter:
292   enabled: true
293   db:
294     <<: *dbSecrets
295
296 so-ve-vnfm-adapter:
297   enabled: false
298
299 so-vfc-adapter:
300   enabled: true
301   db:
302     <<: *dbSecrets
303
304 so-nssmf-adapter:
305   enabled: true
306   db:
307     <<: *dbSecrets
308
309 so-oof-adapter:
310   enabled: true
311   db:
312     <<: *dbSecrets
313   mso:
314     msoKeySecret: *mso-key
315     camundaAuth: AE2E9BE6EF9249085AF98689C4EE087736A5500629A72F35068FFB88813A023581DD6E765071F1C04075B36EA4213A
316     oof:
317       authSecret: *mso-oof-auth
318
319 so-vnfm-adapter:
320   enabled: true
321
322 so-mariadb:
323   db:
324     rootPasswordExternalSecretLocalDb: *dbRootPassSecretName
325     rootPasswordExternalSecret: '{{ ternary .Values.db.rootPasswordExternalSecretLocalDb (include "common.mariadb.secret.rootPassSecretName" (dict "dot" . "chartName" .Values.global.mariadbGalera.nameOverride)) .Values.global.mariadbGalera.localCluster }}'
326     backupCredsExternalSecret: *dbBackupCredsSecretName
327     userCredsExternalSecret: *dbUserCredsSecretName
328     adminCredsExternalSecret: *dbAdminCredsSecretName