blob: e63838d3b126d9270b90c36a39d38d9de21e7a95 [file] [log] [blame]
Ramesh Parthasarathy3aae7c02020-05-20 22:47:57 +00001# Copyright © 2020 AT&T USA
seshukm0df1f8e2020-08-17 21:45:49 +05302# Copyright © 2020 Huawei
Ramesh Parthasarathy3aae7c02020-05-20 22:47:57 +00003#
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# Global configuration defaults.
17#################################################################
18
19global:
20 nodePortPrefix: 302
21 nodePortPrefixExt: 304
22 repository: nexus3.onap.org:10001
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020023 readinessImage: onap/oom/readiness:3.0.1
seshukm0df1f8e2020-08-17 21:45:49 +053024 envsubstImage: dibi/envsubst
25 aafAgentImage: onap/aaf/aaf_agent:2.1.20
Ramesh Parthasarathy3aae7c02020-05-20 22:47:57 +000026 persistence:
27 mountPath: /dockerdata-nfs
28 htpasswdImage: xmartlabs/htpasswd
29 dockerHubRepository: docker.io
seshukm0df1f8e2020-08-17 21:45:49 +053030 security:
31 aaf:
32 enabled: false
sekharhuaweia2145f72020-10-12 14:57:13 +053033
Ramesh Parthasarathy3aae7c02020-05-20 22:47:57 +000034#################################################################
35# Secrets metaconfig
36#################################################################
37secrets:
38 - uid: db-user-creds
39 type: basicAuth
40 externalSecret: '{{ tpl (default "" .Values.db.userCredsExternalSecret) . }}'
41 login: '{{ .Values.db.userName }}'
42 password: '{{ .Values.db.userPassword }}'
43 passwordPolicy: required
44 - uid: db-admin-creds
45 type: basicAuth
46 externalSecret: '{{ tpl (default "" .Values.db.adminCredsExternalSecret) . }}'
47 login: '{{ .Values.db.adminName }}'
48 password: '{{ .Values.db.adminPassword }}'
49 passwordPolicy: required
Ramesh Parthasarathy3aae7c02020-05-20 22:47:57 +000050 - uid: server-actuator-creds
51 name: '{{ include "common.release" . }}-so-appc-actuator-creds'
52 type: basicAuth
53 externalSecret: '{{ tpl (default "" .Values.server.actuatorCredsExternalSecret) . }}'
54 login: '{{ .Values.server.actuator.username }}'
55 password: '{{ .Values.server.actuator.password }}'
56 passwordPolicy: required
57
58#secretsFilePaths: |
59# - 'my file 1'
60# - '{{ include "templateThatGeneratesFileName" . }}'
61
62#################################################################
63# Application configuration defaults.
64#################################################################
65repository: nexus3.onap.org:10001
seshukm40ec9fa2020-07-08 14:26:34 +053066image: onap/so/so-appc-orchestrator:1.6.4
Ramesh Parthasarathy3aae7c02020-05-20 22:47:57 +000067pullPolicy: Always
68
69db:
70 userName: so_user
71 userPassword: so_User123
72 # userCredsExternalSecret: some secret
73 adminName: so_admin
74 adminPassword: so_Admin123
75 # adminCredsExternalSecret: some secret
sekharhuaweia2145f72020-10-12 14:57:13 +053076
Ramesh Parthasarathy3aae7c02020-05-20 22:47:57 +000077server:
78 actuator:
79 username: mso_admin
80 password: password1$
81replicaCount: 1
82minReadySeconds: 10
seshukm0df1f8e2020-08-17 21:45:49 +053083containerPort: &containerPort 8080
Ramesh Parthasarathy3aae7c02020-05-20 22:47:57 +000084logPath: ./logs/soappcorch
85app: appc-orchestrator
86service:
87 name: so-appc-orchestrator
88 type: ClusterIP
89 ports:
sekharhuaweia2145f72020-10-12 14:57:13 +053090 - port: *containerPort
91 name: http
Ramesh Parthasarathy3aae7c02020-05-20 22:47:57 +000092updateStrategy:
93 type: RollingUpdate
94 maxUnavailable: 1
95 maxSurge: 1
96# Resource Limit flavor -By Default using small
97flavor: small
seshukm0df1f8e2020-08-17 21:45:49 +053098
seshukm0df1f8e2020-08-17 21:45:49 +053099#################################################################
100# soHelper part
101#################################################################
102
103soHelpers:
104 nameOverride: so-appc-cert-init
105 certInitializer:
106 nameOverride: so-appc-cert-init
107 credsPath: /opt/app/osaaf/local
108 cadi:
109 apiEnforcement: org.onap.so.openStackAdapterPerm
110 containerPort: *containerPort
111
Ramesh Parthasarathy3aae7c02020-05-20 22:47:57 +0000112# Segregation for Different environment (Small and Large)
113resources:
114 small:
115 limits:
116 memory: 4Gi
117 cpu: 2000m
118 requests:
119 memory: 1Gi
120 cpu: 500m
121 large:
122 limits:
123 memory: 8Gi
124 cpu: 4000m
125 requests:
126 memory: 2Gi
127 cpu: 1000m
128 unlimited: {}
129livenessProbe:
sekharhuaweia2145f72020-10-12 14:57:13 +0530130 path: /manage/health
131 port: 8083
132 scheme: HTTP
133 initialDelaySeconds: 600
134 periodSeconds: 60
135 timeoutSeconds: 10
136 successThreshold: 1
137 failureThreshold: 3
Ramesh Parthasarathy3aae7c02020-05-20 22:47:57 +0000138ingress:
139 enabled: false
140nodeSelector: {}
141tolerations: []
142affinity: {}
seshukm0df1f8e2020-08-17 21:45:49 +0530143
144auth:
145 rest:
146 encrypted: 3EDC974C5CD7FE54C47C7490AF4D3B474CDD7D0FFA35A7ACDE3E209631E45F428976EAC0858874F17390A13149E63C90281DD8D20456
147
148mso:
149 auth: BEA8637716A7EB617DF472BA6552D22F68C1CB17B0D094D77DDA562F4ADAAC4457CAB848E1A4
150 basicUser: poBpmn
sekharhuaweia2145f72020-10-12 14:57:13 +0530151 msoKey: 07a7159d3bf51a0e53be7a8f89699be7
seshukm0df1f8e2020-08-17 21:45:49 +0530152
153appc:
154 client:
155 topic:
156 read:
157 name: APPC-LCM-WRITE
158 timeout: 360000
159 write: APPC-LCM-READ
160 sdnc:
161 read: SDNC-LCM-WRITE
162 write: SDNC-LCM-READ
163 response:
164 timeout: 3600000
165 key: VIlbtVl6YLhNUrtU
166 secret: 64AG2hF4pYeG2pq7CT6XwUOT
167 service: ueb