blob: 9c910badfaec25aa0bf7c0d66bde0aabe89727b5 [file] [log] [blame]
yangyanyjb6ad3cb2019-05-05 23:54:08 +08001# Copyright © 2017 Amdocs, Bell Canada
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.
14
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020020 readinessImage: onap/oom/readiness:3.0.1
yangyanyjb6ad3cb2019-05-05 23:54:08 +080021 loggingRepository: docker.elastic.co
22 loggingImage: beats/filebeat:5.5.0
23
Krzysztof Opasiak43893f52020-01-31 14:26:54 +010024 persistence:
25 mountPath: /dockerdata-nfs
26
dengyh9cb24cf2020-09-01 08:53:59 +080027 mariadbGalera:
28 #This flag allows Modeling to instantiate its own mariadb-galera cluster
29 localCluster: false
30 service: mariadb-galera
31 internalPort: 3306
32 nameOverride: mariadb-galera
33
34readinessCheck:
35 wait_for:
36 msb:
37 name: msb
38 containers:
39 - msb-iag
40
Krzysztof Opasiak43893f52020-01-31 14:26:54 +010041#################################################################
Krzysztof Opasiak894aafb2020-01-31 23:28:25 +010042# Secrets metaconfig
43#################################################################
44secrets:
dengyh9cb24cf2020-09-01 08:53:59 +080045 - uid: modeling-db-secret
46 name: &dbSecretName '{{ include "common.release" . }}-modeling-db-secret'
47 type: basicAuth
48 externalSecret: '{{ tpl (default "" .Values.config.db.userCredentialsExternalSecret) . }}'
49 login: '{{ .Values.config.db.userName }}'
50 password: '{{ .Values.config.db.userPassword }}'
Krzysztof Opasiak894aafb2020-01-31 23:28:25 +010051
52#################################################################
Krzysztof Opasiak43893f52020-01-31 14:26:54 +010053# Dependencies configuration
54#################################################################
55
56mariadb-galera:
dengyh9cb24cf2020-09-01 08:53:59 +080057 config: &mariadbConfig
58 userCredentialsExternalSecret: *dbSecretName
59 mysqlDatabase: etsicatalog
60 nameOverride: modeling-db
Krzysztof Opasiak43893f52020-01-31 14:26:54 +010061 service:
62 name: modeling-db
63 portName: modeling-db
Krzysztof Opasiak894aafb2020-01-31 23:28:25 +010064 internalPort: 3306
Krzysztof Opasiak43893f52020-01-31 14:26:54 +010065 nfsprovisionerPrefix: modeling
66 persistence:
67 mountSubPath: modeling/data
68 enabled: true
69 disableNfsProvisioner: true
70
dengyh9cb24cf2020-09-01 08:53:59 +080071mariadb-init:
72 config: *mariadbConfig
73 # nameOverride should be the same with common.name
74 nameOverride: modeling-etsicatalog
75
yangyanyjb6ad3cb2019-05-05 23:54:08 +080076#################################################################
77# Application configuration defaults.
78#################################################################
dengyh9cb24cf2020-09-01 08:53:59 +080079config:
80 #application configuration about msb
81 ssl_enabled: false
dengyhd64fec42020-10-26 15:23:42 +080082 msb_enabled: false
dengyh9cb24cf2020-09-01 08:53:59 +080083 msbProtocol: https
84 msbServiceName: msb-iag
85 msbPort: 443
dengyhd64fec42020-10-26 15:23:42 +080086 sdcProtocol: https
87 sdcServiceName: sdc-be
88 sdcPort: 8443
89 dmaap_enabled: false
90 dmaapProtocol: https
91 dmaapServiceName: message-router-external
92 dmaapPort: 3905
93
dengyh9cb24cf2020-09-01 08:53:59 +080094 #application configuration user password about mariadb
95 db:
96 userName: etsicatalog
97 # userPassword: password
98 # userCredentialsExternalSecret: some-secret
99
yangyanyjb6ad3cb2019-05-05 23:54:08 +0800100# application image
101flavor: small
102
103repository: nexus3.onap.org:10001
dengyhd64fec42020-10-26 15:23:42 +0800104image: onap/modeling/etsicatalog:1.0.8
dengyhb1056822020-07-13 14:30:34 +0800105initImage: busybox:latest
yangyanyjb6ad3cb2019-05-05 23:54:08 +0800106pullPolicy: Always
107
108#Istio sidecar injection policy
109istioSidecar: true
110
111# flag to enable debugging - application support required
112debugEnabled: false
113
yangyanyjb6ad3cb2019-05-05 23:54:08 +0800114# default number of instances
115replicaCount: 1
116
117nodeSelector: {}
118
119affinity: {}
120
121# probe configuration parameters
122liveness:
123 initialDelaySeconds: 120
124 periodSeconds: 10
125 # necessary to disable liveness probe when setting breakpoints
126 # in debugger so K8s doesn't restart unresponsive container
127 enabled: true
128
129readiness:
130 initialDelaySeconds: 10
131 periodSeconds: 10
132
133## Persist data to a persitent volume
134persistence:
135 enabled: true
136 ## A manually managed Persistent Volume and Claim
137 ## Requires persistence.enabled: true
138 ## If defined, PVC must be created manually before volume will be bound
139 # existingClaim:
140 volumeReclaimPolicy: Retain
141 ## database data Persistent Volume Storage Class
142 ## If defined, storageClassName: <storageClass>
143 ## If set to "-", storageClassName: "", which disables dynamic provisioning
144 ## If undefined (the default) or set to null, no storageClassName spec is
145 ## set, choosing the default provisioner. (gp2 on AWS, standard on
146 ## GKE, AWS & OpenStack)
147 ##
148 # storageClass: "-"
Sylvain Desbureaux3bcc5102019-09-02 15:03:59 +0200149 accessMode: ReadWriteOnce
yangyanyjb6ad3cb2019-05-05 23:54:08 +0800150 size: 2Gi
151 mountPath: /dockerdata-nfs
dyh7d604452019-09-23 15:54:48 +0800152 mountSubPath: modeling/etsicatalog
yangyanyjb6ad3cb2019-05-05 23:54:08 +0800153
154service:
155 type: ClusterIP
dyh7d604452019-09-23 15:54:48 +0800156 name: modeling-etsicatalog
157 portName: modeling-etsicatalog
yangyanyjb6ad3cb2019-05-05 23:54:08 +0800158 externalPort: 8806
159 internalPort: 8806
160# nodePort: 30806
161
162ingress:
163 enabled: false
164
165# Configure resource requests and limits
166resources:
167 small:
168 limits:
169 cpu: 200m
170 memory: 500Mi
171 requests:
172 cpu: 100m
173 memory: 250Mi
174 large:
175 limits:
176 cpu: 400m
177 memory: 1000Mi
178 requests:
179 cpu: 200m
180 memory: 500Mi
181 unlimited: {}