Added missing maria db dependencies
[oom.git] / kubernetes / so / charts / so-monitoring / values.yaml
1 #  ============LICENSE_START=======================================================
2 #   Copyright (C) 2018 Ericsson. All rights reserved.
3 #  ================================================================================
4 #  Licensed under the Apache License, Version 2.0 (the "License");
5 #  you may not use this file except in compliance with the License.
6 #  You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #  Unless required by applicable law or agreed to in writing, software
11 #  distributed under the License is distributed on an "AS IS" BASIS,
12 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #  See the License for the specific language governing permissions and
14 #  limitations under the License.
15 #
16 #  SPDX-License-Identifier: Apache-2.0
17 #  ============LICENSE_END=========================================================
18 #  @author: gareth.roper@ericsson.com
19 #################################################################
20 # Global configuration defaults.
21 #################################################################
22 global:
23   nodePortPrefix: 302
24   nodePortPrefixExt: 304
25   repository: nexus3.onap.org:10001
26   readinessRepository: oomk8s
27   readinessImage: readiness-check:2.0.0
28   persistence:
29     mountPath: /dockerdata-nfs
30
31 #################################################################
32 # Application configuration defaults.
33 #################################################################
34 repository: nexus3.onap.org:10001
35 image: onap/so/so-monitoring:latest
36 pullPolicy: Always
37
38 replicaCount: 1
39 minReadySeconds: 10
40 containerPort: 9091
41 logPath: app/logs/
42 app: so-monitoring
43 service:
44     type: ClusterIP
45     internalPort: 9091
46     externalPort: 9091
47     portName: so-monitor-port
48 updateStrategy:
49     type: RollingUpdate
50     maxUnavailable: 1
51     maxSurge: 1
52 # Resource Limit flavor -By Default using small
53 flavor: small
54 #Segregation for different environment (Small or large)
55 resources:
56     small:
57         requests:
58             memory: 1Gi
59             cpu: 10m
60         limits:
61             memory: 4Gi
62             cpu: 1
63     large:
64         requests:
65             memory: 2Gi
66             cpu: 20m
67         limits:
68             memory: 8Gi
69             cpu: 2
70 readinessProbe:
71     port: 9091
72     initialDelaySeconds: 20
73     periodSeconds: 10
74     timeoutSeconds: 10
75 livenessProbe:
76     port: 9091
77     initialDelaySeconds: 40
78     periodSeconds: 10
79     timeoutSeconds: 10
80     successThreshold: 1
81     failureThreshold: 3
82 ingress:
83   enabled: false
84 nodeSelector: {}
85 tolerations: []
86 affinity: {}
87