ebdc2f3e454ec9ac1fbaa18362c730309c31fe6f
[oom.git] / kubernetes / vfc / charts / vfc-ems-driver / values.yaml
1 # 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 #################################################################
18 global:
19   nodePortPrefix: 302
20   readinessRepository: oomk8s
21   readinessImage: readiness-check:2.0.0
22   loggingRepository: docker.elastic.co
23   loggingImage: beats/filebeat:5.5.0
24
25 #################################################################
26 # Application configuration defaults.
27 #################################################################
28 # application image
29 flavor: small
30
31 repository: nexus3.onap.org:10001
32 image: onap/vfc/emsdriver:1.2.1
33 pullPolicy: Always
34
35 #Istio sidecar injection policy
36 istioSidecar: true
37
38 # flag to enable debugging - application support required
39 debugEnabled: false
40
41 # application configuration
42 config:
43   vescollectorServiceName: dcae-ves-collector
44   vescollectorPort: 8080
45   vescollectorUser: ""
46   vescollectorPassword: ""
47
48 # default number of instances
49 replicaCount: 1
50
51 nodeSelector: {}
52
53 affinity: {}
54
55 # probe configuration parameters
56 liveness:
57   initialDelaySeconds: 120
58   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
63 readiness:
64   initialDelaySeconds: 10
65   periodSeconds: 10
66
67 service:
68   type: ClusterIP
69   name: vfc-ems-driver
70   portName: vfc-ems-driver
71   externalPort: 8206
72   internalPort: 8206
73 #  nodePort: 30296
74
75 ingress:
76   enabled: false
77
78 # Configure resource requests and limits
79 resources:
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: {}