blob: 2761d05999246a0de4adb256564851e23770879d [file] [log] [blame]
Bharath Thiruveedula63070de2018-08-16 10:08:52 +05301# Copyright (C) 2018 Verizon. All Rights Reserved
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
Bharath Thiruveedula63070de2018-08-16 10:08:52 +053021 loggingRepository: docker.elastic.co
22 loggingImage: beats/filebeat:5.5.0
23
24#################################################################
25# Application configuration defaults.
26#################################################################
27# application image
GregSulek5fb3bc62018-09-20 08:51:37 -040028flavor: small
29
Bharath Thiruveedula63070de2018-08-16 10:08:52 +053030repository: nexus3.onap.org:10001
dengyh428f6052020-09-23 15:31:26 +080031image: onap/vfc/db:1.3.4
Bharath Thiruveedula63070de2018-08-16 10:08:52 +053032pullPolicy: Always
33
34# flag to enable debugging - application support required
35debugEnabled: false
36
37# application configuration
38config: {}
39
40# default number of instances
41replicaCount: 1
42
43nodeSelector: {}
44
45affinity: {}
46
47# probe configuration parameters
48liveness:
49 initialDelaySeconds: 120
50 periodSeconds: 10
51 # necessary to disable liveness probe when setting breakpoints
52 # in debugger so K8s doesn't restart unresponsive container
53 enabled: true
54
55readiness:
56 initialDelaySeconds: 120
57 periodSeconds: 10
58
59service:
60 type: ClusterIP
yangyane9871c52019-04-04 16:28:28 +080061 name: vfc-redis
62 portName: vfc-redis
dengyh62038bf2020-08-21 16:10:58 +080063 externalPort: 6379
64 internalPort: 6379
Bharath Thiruveedula63070de2018-08-16 10:08:52 +053065
66ingress:
67 enabled: false
68
GregSulek5fb3bc62018-09-20 08:51:37 -040069# Configure resource requests and limits
70resources:
71 small:
72 limits:
73 cpu: 200m
74 memory: 500Mi
75 requests:
76 cpu: 100m
77 memory: 250Mi
78 large:
79 limits:
80 cpu: 400m
81 memory: 1000Mi
82 requests:
83 cpu: 200m
84 memory: 500Mi
85 unlimited: {}