blob: d4c71b642c139927376efa48e006cf455ed66025 [file] [log] [blame]
Mike Elliott6ba69cd2018-04-03 16:37:06 -04001# 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#################################################################
18global:
19 nodePortPrefix: 302
Mike Elliott6ba69cd2018-04-03 16:37:06 -040020 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000021 readinessImage: readiness-check:2.0.0
Mike Elliott6ba69cd2018-04-03 16:37:06 -040022 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
24
25#################################################################
26# Application configuration defaults.
27#################################################################
28# application image
GregSulek5fb3bc62018-09-20 08:51:37 -040029flavor: small
30
Mike Elliott6ba69cd2018-04-03 16:37:06 -040031repository: nexus3.onap.org:10001
yangyana538d852019-05-05 10:07:34 +080032image: onap/vfc/emsdriver:1.3.0
Mike Elliott6ba69cd2018-04-03 16:37:06 -040033pullPolicy: Always
34
Huabing Zhaoc171ac22018-07-31 06:49:03 +000035#Istio sidecar injection policy
36istioSidecar: true
37
Mike Elliott6ba69cd2018-04-03 16:37:06 -040038# flag to enable debugging - application support required
39debugEnabled: false
40
41# application configuration
yangyan1c052992018-04-13 12:16:40 +080042config:
43 vescollectorServiceName: dcae-ves-collector
44 vescollectorPort: 8080
45 vescollectorUser: ""
46 vescollectorPassword: ""
Mike Elliott6ba69cd2018-04-03 16:37:06 -040047
48# default number of instances
49replicaCount: 1
50
51nodeSelector: {}
52
53affinity: {}
54
55# probe configuration parameters
56liveness:
yangyand08e6dc2018-08-17 13:28:00 +080057 initialDelaySeconds: 120
Mike Elliott6ba69cd2018-04-03 16:37:06 -040058 periodSeconds: 10
59 # necessary to disable liveness probe when setting breakpoints
60 # in debugger so K8s doesn't restart unresponsive container
61 enabled: true
62
63readiness:
64 initialDelaySeconds: 10
65 periodSeconds: 10
66
67service:
68 type: ClusterIP
69 name: vfc-ems-driver
BorislavG1ffbd992018-04-24 07:56:27 +000070 portName: vfc-ems-driver
Mike Elliott6ba69cd2018-04-03 16:37:06 -040071 externalPort: 8206
72 internalPort: 8206
73# nodePort: 30296
74
75ingress:
76 enabled: false
77
GregSulek5fb3bc62018-09-20 08:51:37 -040078# Configure resource requests and limits
79resources:
80 small:
81 limits:
82 cpu: 200m
83 memory: 500Mi
84 requests:
85 cpu: 100m
86 memory: 250Mi
87 large:
88 limits:
89 cpu: 400m
90 memory: 1000Mi
91 requests:
92 cpu: 200m
93 memory: 500Mi
94 unlimited: {}