Merge "Fixed openstack credentials for calling bpmn external tasks"
[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.2
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:1.5.3
36 pullPolicy: Always
37
38 replicaCount: 1
39 minReadySeconds: 10
40 containerPort: 9091
41 logPath: app/logs/
42 app: so-monitoring
43 service:
44 #Since this is a feature for monitoring the service type is changed to internal, users can change it to NodePort on need basis...
45     type: ClusterIP
46     nodePort: 24
47     internalPort: 9091
48     externalPort: 9091
49     portName: so-monitor-port
50 updateStrategy:
51     type: RollingUpdate
52     maxUnavailable: 1
53     maxSurge: 1
54 # Resource Limit flavor -By Default using small
55 flavor: small
56 #Segregation for different environment (Small or large)
57 resources:
58     small:
59         requests:
60             memory: 1Gi
61             cpu: 10m
62         limits:
63             memory: 4Gi
64             cpu: 1
65     large:
66         requests:
67             memory: 2Gi
68             cpu: 20m
69         limits:
70             memory: 8Gi
71             cpu: 2
72 readinessProbe:
73     port: 9091
74     initialDelaySeconds: 20
75     periodSeconds: 10
76     timeoutSeconds: 10
77 livenessProbe:
78     port: 9091
79     initialDelaySeconds: 40
80     periodSeconds: 10
81     timeoutSeconds: 10
82     successThreshold: 1
83     failureThreshold: 3
84 ingress:
85     enabled: false
86     service:
87         - baseaddr: "somonitoring"
88           name: "so-monitoring"
89           port: 9091
90     config:
91         ssl: "none"
92 nodeSelector: {}
93 tolerations: []
94 affinity: {}