blob: 208cf64b6f0e7e71861a9a7bbb91aecf4b560daa [file] [log] [blame]
Mandeep Khinda60d36d42018-09-24 15:15:48 +00001# Copyright © 2018 AT&T USA
seshukm0df1f8e2020-08-17 21:45:49 +05302# Copyright © 2020 Huawei
Mandeep Khinda60d36d42018-09-24 15:15:48 +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
jmacc4f04d32018-10-12 18:24:24 +000020 persistence:
21 mountPath: /dockerdata-nfs
seshukm0df1f8e2020-08-17 21:45:49 +053022 security:
23 aaf:
24 enabled: false
25 aaf:
26 auth:
27 header: Basic c29Ac28ub25hcC5vcmc6ZGVtbzEyMzQ1Ngo=
krishnaa9692b606b2020-10-30 11:29:21 +053028 mariadbGalera:
29 serviceName: mariadb-galera
30 servicePort: '3306'
jmacc4f04d32018-10-12 18:24:24 +000031
Sylvain Desbureauxd055a172020-10-30 14:32:03 +010032readinessCheck:
33 wait_for:
34 - so-mariadb-config
35
jmacc4f04d32018-10-12 18:24:24 +000036#################################################################
Krzysztof Opasiakf232c992020-03-24 23:08:15 +010037# Secrets metaconfig
38#################################################################
39secrets:
40 - uid: db-user-creds
41 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010042 externalSecret: '{{ tpl (default "" .Values.db.userCredsExternalSecret) . }}'
Krzysztof Opasiakf232c992020-03-24 23:08:15 +010043 login: '{{ .Values.db.userName }}'
44 password: '{{ .Values.db.userPassword }}'
45 passwordPolicy: required
46 - uid: db-admin-creds
47 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010048 externalSecret: '{{ tpl (default "" .Values.db.adminCredsExternalSecret) . }}'
Krzysztof Opasiakf232c992020-03-24 23:08:15 +010049 login: '{{ .Values.db.adminName }}'
50 password: '{{ .Values.db.adminPassword }}'
51 passwordPolicy: required
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010052
53#secretsFilePaths: |
54# - 'my file 1'
55# - '{{ include "templateThatGeneratesFileName" . }}'
Krzysztof Opasiakf232c992020-03-24 23:08:15 +010056
57#################################################################
jmacc4f04d32018-10-12 18:24:24 +000058# Application configuration defaults.
59#################################################################
Kalkere Ramesh, Sharandf29b1e2020-11-13 15:51:37 -050060image: onap/so/request-db-adapter:1.7.10
jmacc4f04d32018-10-12 18:24:24 +000061pullPolicy: Always
62
Krzysztof Opasiakf232c992020-03-24 23:08:15 +010063db:
64 userName: so_user
65 userPassword: so_User123
66 # userCredsExternalSecret: some secret
67 adminName: so_admin
68 adminPassword: so_Admin123
69 # adminCredsExternalSecret: some secret
70
seshukm0df1f8e2020-08-17 21:45:49 +053071mso:
72 adapters:
73 requestDb:
74 auth: Basic YnBlbDpwYXNzd29yZDEk
75
Mandeep Khinda60d36d42018-09-24 15:15:48 +000076replicaCount: 1
77minReadySeconds: 10
seshukm0df1f8e2020-08-17 21:45:49 +053078containerPort: &containerPort 8083
Mandeep Khinda60d36d42018-09-24 15:15:48 +000079logPath: ./logs/reqdb/
80app: request-db-adapter
81service:
82 type: ClusterIP
seshukm0df1f8e2020-08-17 21:45:49 +053083 internalPort: *containerPort
84 externalPort: *containerPort
Mandeep Khinda60d36d42018-09-24 15:15:48 +000085 portName: so-reqdb-port
86updateStrategy:
87 type: RollingUpdate
88 maxUnavailable: 1
89 maxSurge: 1
seshukm0df1f8e2020-08-17 21:45:49 +053090
91#################################################################
92# soHelpers part
93#################################################################
94soHelpers:
95 nameOverride: so-requestdb-cert-init
96 certInitializer:
97 nameOverride: so-requestdb-cert-init
98 credsPath: /opt/app/osaaf/local
99 cadi:
100 apiEnforcement: org.onap.so.requestDbAdapterPerm
101 containerPort: *containerPort
102
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000103# Resource Limit flavor -By Default using small
104flavor: small
105# Segregation for Different environment (Small and Large)
106resources:
107 small:
108 limits:
109 memory: 4Gi
110 cpu: 2000m
111 requests:
112 memory: 1Gi
113 cpu: 500m
114 large:
115 limits:
116 memory: 8Gi
117 cpu: 4000m
118 requests:
119 memory: 2Gi
120 cpu: 1000m
121 unlimited: {}
122livenessProbe:
123 path: /manage/health
124 port: 8083
125 scheme: HTTP
126 initialDelaySeconds: 600
127 periodSeconds: 60
128 timeoutSeconds: 10
129 successThreshold: 1
130 failureThreshold: 3
131ingress:
132 enabled: false
133nodeSelector: {}
134tolerations: []
135affinity: {}