blob: a0915a12234760297529e528b8cf9f7a6dbcac07 [file] [log] [blame]
rope252cd2142c2018-09-17 12:35:36 +01001# ============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
jmacc4f04d32018-10-12 18:24:24 +000019#################################################################
20# Global configuration defaults.
21#################################################################
22global:
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#################################################################
34repository: nexus3.onap.org:10001
rope252cd2142c2018-09-17 12:35:36 +010035image: onap/so/so-monitoring:latest
jmacc4f04d32018-10-12 18:24:24 +000036pullPolicy: Always
37
rope252cd2142c2018-09-17 12:35:36 +010038replicaCount: 1
39minReadySeconds: 10
40containerPort: 9091
41logPath: app/logs/
42app: so-monitoring
43service:
44 type: ClusterIP
45 internalPort: 9091
46 externalPort: 9091
47 portName: so-monitor-port
48updateStrategy:
49 type: RollingUpdate
50 maxUnavailable: 1
51 maxSurge: 1
52# Resource Limit flavor -By Default using small
53flavor: small
54#Segregation for different environment (Small or large)
55resources:
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
70readinessProbe:
71 port: 9091
72 initialDelaySeconds: 20
73 periodSeconds: 10
74 timeoutSeconds: 10
75livenessProbe:
76 port: 9091
77 initialDelaySeconds: 40
78 periodSeconds: 10
79 timeoutSeconds: 10
80 successThreshold: 1
81 failureThreshold: 3
82ingress:
83 enabled: false
84nodeSelector: {}
85tolerations: []
86affinity: {}
87