blob: 034e269d6aca36d8645a57cc8bca1eec96a68a21 [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
Konrad Bańka7bde1d62020-04-01 16:09:11 +020026 #This configuration specifies Service and port for SDNC OAM interface
27 sdncOamService: sdnc-oam
28 sdncOamPort: 8282
seshukm0df1f8e2020-08-17 21:45:49 +053029 security:
30 aaf:
31 enabled: false
32 aaf:
33 auth:
34 encrypted: 3EDC974C5CD7FE54C47C7490AF4D3B474CDD7D0FFA35A7ACDE3E209631E45F428976EAC0858874F17390A13149E63C90281DD8D20456
jmacc4f04d32018-10-12 18:24:24 +000035
36#################################################################
Krzysztof Opasiak42f027f2020-03-02 21:04:12 +010037# Secrets metaconfig
38#################################################################
39secrets:
40 - uid: db-user-creds
41 name: '{{ include "common.release" . }}-so-bpmn-infra-db-user-creds'
42 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010043 externalSecret: '{{ tpl (default "" .Values.db.userCredsExternalSecret) . }}'
Krzysztof Opasiak42f027f2020-03-02 21:04:12 +010044 login: '{{ .Values.db.userName }}'
45 password: '{{ .Values.db.userPassword }}'
46 passwordPolicy: required
47 - uid: db-admin-creds
48 name: '{{ include "common.release" . }}-so-bpmn-infra-db-admin-creds'
49 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010050 externalSecret: '{{ tpl (default "" .Values.db.adminCredsExternalSecret) . }}'
Krzysztof Opasiak42f027f2020-03-02 21:04:12 +010051 login: '{{ .Values.db.adminName }}'
52 password: '{{ .Values.db.adminPassword }}'
53 passwordPolicy: required
54
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010055#secretsFilePaths: |
56# - 'my file 1'
57# - '{{ include "templateThatGeneratesFileName" . }}'
Krzysztof Opasiak42f027f2020-03-02 21:04:12 +010058
59#################################################################
jmacc4f04d32018-10-12 18:24:24 +000060# Application configuration defaults.
61#################################################################
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000062repository: nexus3.onap.org:10001
seshukm40ec9fa2020-07-08 14:26:34 +053063image: onap/so/bpmn-infra:1.6.4
jmacc4f04d32018-10-12 18:24:24 +000064pullPolicy: Always
65
Krzysztof Opasiak42f027f2020-03-02 21:04:12 +010066db:
67 userName: so_user
68 userPassword: so_User123
69 # userCredsExternalSecret: some secret
70 adminName: so_admin
71 adminPassword: so_Admin123
72 # adminCredsExternalSecret: some secret
seshukm0df1f8e2020-08-17 21:45:49 +053073
74aai:
75 auth: 221187EFA3AD4E33600DE0488F287099934CE65C3D0697BCECC00BB58E784E07CD74A24581DC31DBC086FF63DF116378776E9BE3D1325885
76
77cds:
78 auth: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
79
80mso:
81 key: 07a7159d3bf51a0e53be7a8f89699be7
82 adapters:
83 requestDb:
84 auth: Basic YnBlbDpwYXNzd29yZDEk
85 db:
86 auth: A3745B5DBE165EFCF101D85A6FC81C211AB8BF604F8861B6C413D5DC90F8F30E0139DE44B8A342F4EF70AF
87 password: wLg4sjrAFUS8rfVfdvTXeQ==
88 po:
89 auth: A3745B5DBE165EFCF101D85A6FC81C211AB8BF604F8861B6C413D5DC90F8F30E0139DE44B8A342F4EF70AF
90 sdnc:
91 password: 1D78CFC35382B6938A989066A7A7EAEF4FE933D2919BABA99EB4763737F39876C333EE5F
92 sniro:
93 auth: test:testpwd
94 oof:
95 auth: test:testpwd
96so:
97 vnfm:
98 adapter:
99 auth: Basic dm5mbTpwYXNzd29yZDEk
100sniro:
101 endpoint: http://replaceme:28090/optimizationInstance/V1/create
102
Sylvain Desbureaux7c3180e2020-10-26 15:33:45 +0100103vnf:
104 api:
105 version: v2
106
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000107replicaCount: 1
108minReadySeconds: 10
seshukm0df1f8e2020-08-17 21:45:49 +0530109containerPort: &containerPort 8081
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000110logPath: ./logs/bpmn/
111app: so-bpmn-infra
112service:
seshukm0df1f8e2020-08-17 21:45:49 +0530113 type: ClusterIP
114 internalPort: *containerPort
115 externalPort: 8081
116 portName: so-bpmn-port
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000117updateStrategy:
seshukm0df1f8e2020-08-17 21:45:49 +0530118 type: RollingUpdate
119 maxUnavailable: 1
120 maxSurge: 1
121
122#################################################################
123# soHelper part
124#################################################################
125soHelpers:
126 nameOverride: so-bpmn-cert-init
127 certInitializer:
128 nameOverride: so-bpmn-cert-init
129 credsPath: /opt/app/osaaf/local
130 cadi:
131 apiEnforcement: org.onap.so.bpmnPerm
132 containerPort: *containerPort
133
vaibhav16dec0da88292018-08-13 06:10:27 +0000134# Resource Limit flavor -By Default using small
Ramesh Parthasarathy1ceefda2018-09-14 21:22:43 +0000135flavor: large
vaibhav16dec0da88292018-08-13 06:10:27 +0000136# Segregation for Different environment (Small and Large)
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000137resources:
vaibhav16dec0da88292018-08-13 06:10:27 +0000138 small:
139 limits:
140 memory: 4Gi
141 cpu: 2000m
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000142 requests:
143 memory: 1Gi
144 cpu: 500m
vaibhav16dec0da88292018-08-13 06:10:27 +0000145 large:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000146 limits:
147 memory: 8Gi
148 cpu: 4000m
vaibhav16dec0da88292018-08-13 06:10:27 +0000149 requests:
150 memory: 2Gi
151 cpu: 1000m
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000152 unlimited: {}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000153livenessProbe:
Sylvain Desbureaux7c3180e2020-10-26 15:33:45 +0100154 path: /manage/health
155 scheme: HTTP
156 initialDelaySeconds: 600
157 periodSeconds: 60
158 timeoutSeconds: 10
159 successThreshold: 1
160 failureThreshold: 3
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000161ingress:
162 enabled: false
163nodeSelector: {}
164tolerations: []
Brian Freeman1a667932018-09-06 14:45:37 -0500165affinity: {}