blob: 357a8fd62c3912f469dd04b0b9d29079aa8d6381 [file] [log] [blame]
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +00001# 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.
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
21 readinessRepository: oomk8s
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000022 readinessImage: readiness-check:2.0.2
jmacc4f04d32018-10-12 18:24:24 +000023 persistence:
24 mountPath: /dockerdata-nfs
25
26#################################################################
Krzysztof Opasiak42f027f2020-03-02 21:04:12 +010027# Secrets metaconfig
28#################################################################
29secrets:
30 - uid: db-user-creds
31 name: '{{ include "common.release" . }}-so-bpmn-infra-db-user-creds'
32 type: basicAuth
33 externalSecret: '{{ .Values.db.userCredsExternalSecret }}'
34 login: '{{ .Values.db.userName }}'
35 password: '{{ .Values.db.userPassword }}'
36 passwordPolicy: required
37 - uid: db-admin-creds
38 name: '{{ include "common.release" . }}-so-bpmn-infra-db-admin-creds'
39 type: basicAuth
40 externalSecret: '{{ .Values.db.adminCredsExternalSecret }}'
41 login: '{{ .Values.db.adminName }}'
42 password: '{{ .Values.db.adminPassword }}'
43 passwordPolicy: required
44
45
46#################################################################
jmacc4f04d32018-10-12 18:24:24 +000047# Application configuration defaults.
48#################################################################
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000049repository: nexus3.onap.org:10001
seshukmfb56d712019-10-14 10:46:52 +053050image: onap/so/bpmn-infra:1.5.3
jmacc4f04d32018-10-12 18:24:24 +000051pullPolicy: Always
52
Krzysztof Opasiak42f027f2020-03-02 21:04:12 +010053db:
54 userName: so_user
55 userPassword: so_User123
56 # userCredsExternalSecret: some secret
57 adminName: so_admin
58 adminPassword: so_Admin123
59 # adminCredsExternalSecret: some secret
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000060replicaCount: 1
61minReadySeconds: 10
62containerPort: 8081
63logPath: ./logs/bpmn/
64app: so-bpmn-infra
65service:
66 type: ClusterIP
67 internalPort: 8081
Brian Freeman1a667932018-09-06 14:45:37 -050068 externalPort: 8081
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000069 portName: so-bpmn-port
70updateStrategy:
71 type: RollingUpdate
72 maxUnavailable: 1
73 maxSurge: 1
vaibhav16dec0da88292018-08-13 06:10:27 +000074# Resource Limit flavor -By Default using small
Ramesh Parthasarathy1ceefda2018-09-14 21:22:43 +000075flavor: large
vaibhav16dec0da88292018-08-13 06:10:27 +000076# Segregation for Different environment (Small and Large)
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000077resources:
vaibhav16dec0da88292018-08-13 06:10:27 +000078 small:
79 limits:
80 memory: 4Gi
81 cpu: 2000m
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000082 requests:
83 memory: 1Gi
84 cpu: 500m
vaibhav16dec0da88292018-08-13 06:10:27 +000085 large:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000086 limits:
87 memory: 8Gi
88 cpu: 4000m
vaibhav16dec0da88292018-08-13 06:10:27 +000089 requests:
90 memory: 2Gi
91 cpu: 1000m
Mandeep Khinda60d36d42018-09-24 15:15:48 +000092 unlimited: {}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000093livenessProbe:
94 path: /manage/health
95 scheme: HTTP
96 initialDelaySeconds: 600
97 periodSeconds: 60
98 timeoutSeconds: 10
99 successThreshold: 1
100 failureThreshold: 3
101ingress:
102 enabled: false
103nodeSelector: {}
104tolerations: []
Brian Freeman1a667932018-09-06 14:45:37 -0500105affinity: {}