5926584ef9d9f3674ff429b4ce9e0343509ef298
[oom.git] / kubernetes / modeling / charts / modeling-etsicatalog / values.yaml
1 # 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 #################################################################
18 global:
19   nodePortPrefix: 302
20   readinessImage: onap/oom/readiness:3.0.1
21   loggingRepository: docker.elastic.co
22   loggingImage: beats/filebeat:5.5.0
23
24   persistence:
25     mountPath: /dockerdata-nfs
26
27   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
34 readinessCheck:
35   wait_for:
36     msb:
37       name: msb
38       containers:
39           - msb-iag
40
41 #################################################################
42 # Secrets metaconfig
43 #################################################################
44 secrets:
45   - 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 }}'
51
52 #################################################################
53 # Dependencies configuration
54 #################################################################
55
56 mariadb-galera:
57   config: &mariadbConfig
58     userCredentialsExternalSecret: *dbSecretName
59     mysqlDatabase: etsicatalog
60   nameOverride: modeling-db
61   service:
62     name: modeling-db
63     portName: modeling-db
64     internalPort: 3306
65   nfsprovisionerPrefix: modeling
66   persistence:
67     mountSubPath: modeling/data
68     enabled: true
69   disableNfsProvisioner: true
70
71 mariadb-init:
72   config: *mariadbConfig
73   # nameOverride should be the same with common.name
74   nameOverride: modeling-etsicatalog
75
76 #################################################################
77 # Application configuration defaults.
78 #################################################################
79 config:
80   #application configuration about  msb
81   ssl_enabled: false
82   msbProtocol: https
83   msbServiceName: msb-iag
84   msbPort: 443
85   #application configuration user password about mariadb
86   db:
87     userName: etsicatalog
88     # userPassword: password
89     # userCredentialsExternalSecret: some-secret
90
91 # application image
92 flavor: small
93
94 repository: nexus3.onap.org:10001
95 image: onap/modeling/etsicatalog:1.0.7
96 initImage: busybox:latest
97 pullPolicy: Always
98
99 #Istio sidecar injection policy
100 istioSidecar: true
101
102 # flag to enable debugging - application support required
103 debugEnabled: false
104
105 # default number of instances
106 replicaCount: 1
107
108 nodeSelector: {}
109
110 affinity: {}
111
112 # probe configuration parameters
113 liveness:
114   initialDelaySeconds: 120
115   periodSeconds: 10
116   # necessary to disable liveness probe when setting breakpoints
117   # in debugger so K8s doesn't restart unresponsive container
118   enabled: true
119
120 readiness:
121   initialDelaySeconds: 10
122   periodSeconds: 10
123
124 ## Persist data to a persitent volume
125 persistence:
126   enabled: true
127   ## A manually managed Persistent Volume and Claim
128   ## Requires persistence.enabled: true
129   ## If defined, PVC must be created manually before volume will be bound
130   # existingClaim:
131   volumeReclaimPolicy: Retain
132   ## database data Persistent Volume Storage Class
133   ## If defined, storageClassName: <storageClass>
134   ## If set to "-", storageClassName: "", which disables dynamic provisioning
135   ## If undefined (the default) or set to null, no storageClassName spec is
136   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
137   ##   GKE, AWS & OpenStack)
138   ##
139   # storageClass: "-"
140   accessMode: ReadWriteOnce
141   size: 2Gi
142   mountPath: /dockerdata-nfs
143   mountSubPath: modeling/etsicatalog
144
145 service:
146   type: ClusterIP
147   name: modeling-etsicatalog
148   portName: modeling-etsicatalog
149   externalPort: 8806
150   internalPort: 8806
151 #  nodePort: 30806
152
153 ingress:
154   enabled: false
155
156 # Configure resource requests and limits
157 resources:
158   small:
159     limits:
160       cpu: 200m
161       memory: 500Mi
162     requests:
163       cpu: 100m
164       memory: 250Mi
165   large:
166     limits:
167       cpu: 400m
168       memory: 1000Mi
169     requests:
170       cpu: 200m
171       memory: 500Mi
172   unlimited: {}