vvp -- VNF Validation Platform
[oom.git] / kubernetes / vvp / charts / vvp-int-haproxy / values.yaml
1 # Copyright © 2018 Amdocs, AT&T, 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   repository: nexus3.onap.org:10001
21
22 #################################################################
23 # Application configuration defaults.
24 #################################################################
25 # application image
26 repository: docker.io
27 image: haproxy:1.7.2-alpine
28 pullPolicy: Always
29
30 # flag to enable debugging - application support required
31 debugEnabled: false
32
33 replicaCount: 1
34
35 nodeSelector: {}
36
37 affinity: {}
38
39 # probe configuration parameters
40 liveness:
41   initialDelaySeconds: 10
42   periodSeconds: 10
43   # necessary to disable liveness probe when setting breakpoints
44   # in debugger so K8s doesn't restart unresponsive container
45   enabled: true
46
47 readiness:
48   initialDelaySeconds: 10
49   periodSeconds: 10
50
51 service:
52   type: NodePort
53   portName1: web
54   internalPort1: 80
55   portName2: jenkins
56   internalPort2: 8080
57   portName3: stats
58   internalPort3: 9000
59
60 ingress:
61   enabled: false