blob: 2b219d05955c9687fb3779c5c40b86e145378a5e [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
jmacc4f04d32018-10-12 18:24:24 +000020 persistence:
21 mountPath: /dockerdata-nfs
krishnaa9692b606b2020-10-30 11:29:21 +053022 mariadbGalera:
Andreas Geissler576de2d2023-10-24 15:38:01 +020023 service: mariadb-galera
krishnaa9692b606b2020-10-30 11:29:21 +053024 servicePort: '3306'
jmacc4f04d32018-10-12 18:24:24 +000025
Sylvain Desbureauxd055a172020-10-30 14:32:03 +010026readinessCheck:
27 wait_for:
Prabhjot Singh Sethi46e17562021-08-20 22:40:23 +053028 jobs:
29 - '{{ include "common.release" . }}-so-mariadb-config-job'
Sylvain Desbureauxd055a172020-10-30 14:32:03 +010030
jmacc4f04d32018-10-12 18:24:24 +000031#################################################################
Krzysztof Opasiakfcfb5f02020-03-24 23:34:24 +010032# Secrets metaconfig
33#################################################################
34secrets:
35 - uid: db-user-creds
36 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010037 externalSecret: '{{ tpl (default "" .Values.db.userCredsExternalSecret) . }}'
Krzysztof Opasiakfcfb5f02020-03-24 23:34:24 +010038 login: '{{ .Values.db.userName }}'
39 password: '{{ .Values.db.userPassword }}'
40 passwordPolicy: required
41 - uid: db-admin-creds
42 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010043 externalSecret: '{{ tpl (default "" .Values.db.adminCredsExternalSecret) . }}'
Krzysztof Opasiakfcfb5f02020-03-24 23:34:24 +010044 login: '{{ .Values.db.adminName }}'
45 password: '{{ .Values.db.adminPassword }}'
46 passwordPolicy: required
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010047
48#secretsFilePaths: |
49# - 'my file 1'
50# - '{{ include "templateThatGeneratesFileName" . }}'
Krzysztof Opasiakfcfb5f02020-03-24 23:34:24 +010051
52#################################################################
jmacc4f04d32018-10-12 18:24:24 +000053# Application configuration defaults.
54#################################################################
Lukasz Rajewskib6861242022-09-06 13:32:58 +020055image: onap/so/so-etsi-sol005-adapter:1.9.0
jmacc4f04d32018-10-12 18:24:24 +000056pullPolicy: Always
57
Andreas Geissler2c1ba292024-01-10 22:20:05 +010058# Local mariadb galera instance default name
59mariadb-galera:
60 nameOverride: so-mariadb-galera
61 service:
62 internalPort: 3306
63 mariadbOperator:
64 galera:
65 enabled: false
66
Krzysztof Opasiakfcfb5f02020-03-24 23:34:24 +010067db:
68 userName: so_user
69 userPassword: so_User123
70 # userCredsExternalSecret: some secret
71 adminName: so_admin
72 adminPassword: so_Admin123
73 # adminCredsExternalSecret: some secret
74
seshukm0df1f8e2020-08-17 21:45:49 +053075mso:
76 adapters:
77 requestDb:
78 auth: Basic YnBlbDpwYXNzd29yZDEk
79
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000080replicaCount: 1
81minReadySeconds: 10
seshukm0df1f8e2020-08-17 21:45:49 +053082containerPort: &containerPort 8084
seshukm87ccd872021-03-30 21:45:16 +053083logPath: ./logs/etsi-sol005-adapter/
84app: etsi-sol005-adapter
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000085service:
Andreas Geisslerad61ccf2023-02-23 09:17:36 +010086 type: ClusterIP
87 ports:
88 - port: *containerPort
89 name: http
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000090updateStrategy:
Andreas Geisslerad61ccf2023-02-23 09:17:36 +010091 type: RollingUpdate
92 maxUnavailable: 1
93 maxSurge: 1
seshukm0df1f8e2020-08-17 21:45:49 +053094
95#################################################################
96# soHelpers part
97#################################################################
98soHelpers:
seshukm0df1f8e2020-08-17 21:45:49 +053099 containerPort: *containerPort
100
vaibhav16dec0da88292018-08-13 06:10:27 +0000101# Resource Limit flavor -By Default using small
102flavor: small
103# Segregation for Different environment (Small and Large)
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000104resources:
vaibhav16dec0da88292018-08-13 06:10:27 +0000105 small:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000106 limits:
Andreas Geissler47537432024-02-27 08:55:23 +0100107 cpu: "1"
108 memory: "1Gi"
vaibhav16dec0da88292018-08-13 06:10:27 +0000109 requests:
Andreas Geissler47537432024-02-27 08:55:23 +0100110 cpu: "0.5"
111 memory: "1Gi"
vaibhav16dec0da88292018-08-13 06:10:27 +0000112 large:
113 limits:
Andreas Geissler47537432024-02-27 08:55:23 +0100114 cpu: "2"
115 memory: "2Gi"
vaibhav16dec0da88292018-08-13 06:10:27 +0000116 requests:
Andreas Geissler47537432024-02-27 08:55:23 +0100117 cpu: "1"
118 memory: "2Gi"
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000119 unlimited: {}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000120livenessProbe:
Andreas Geisslerad61ccf2023-02-23 09:17:36 +0100121 path: /manage/health
122 port: 8084
123 scheme: HTTP
124 initialDelaySeconds: 600
125 periodSeconds: 60
126 timeoutSeconds: 10
127 successThreshold: 1
128 failureThreshold: 3
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000129ingress:
130 enabled: false
AndrewLambab2704a2023-04-05 14:45:11 +0100131serviceMesh:
132 authorizationPolicy:
133 authorizedPrincipals:
134 - serviceAccount: robot-read
135 - serviceAccount: so-bpmn-infra-read
136 - serviceAccount: so-read
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000137nodeSelector: {}
138tolerations: []
Brian Freeman1a667932018-09-06 14:45:37 -0500139affinity: {}
farida azmy87f46222021-04-06 15:25:15 +0200140
141#Pods Service Account
142serviceAccount:
143 nameOverride: so-etsi-sol005-adapter
144 roles:
145 - read