vvp -- VNF Validation Platform
[oom.git] / kubernetes / oof / charts / oof-has / charts / oof-has-zookeeper / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T,VMware
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 # Default values for mariadb.
17 # This is a YAML-formatted file.
18 # Declare variables to be passed into your templates.
19 global: # global defaults
20   nodePortPrefix: 302
21   persistence: {}
22
23
24 # application image
25 repository: nexus3.onap.org:10001
26 image: zookeeper:3.4
27 pullPolicy: Always
28
29 # default number of instances
30 replicaCount: 1
31 nodeSelector: {}
32 affinity: {}
33 # Resource Limit flavor -By Default using small
34 flavor: small
35 # Segregation for Different environment (Small and Large)
36 resources:
37   small:
38     limits:
39       memory: 4Gi
40       cpu: 2000m
41     requests:
42       memory: 1Gi
43       cpu: 500m
44   large:
45     limits:
46       memory: 8Gi
47       cpu: 4000m
48     requests:
49       memory: 2Gi
50       cpu: 1000m
51   unlimited: {}
52 # probe configuration parameters
53 liveness:
54   initialDelaySeconds: 10
55   periodSeconds: 10
56   # necessary to disable liveness probe when setting breakpoints
57   # in debugger so K8s doesn't restart unresponsive container
58   enabled: true
59 readiness:
60   initialDelaySeconds: 10
61   periodSeconds: 10
62 service:
63   type: ClusterIP
64   name: oof-has-zk
65   externalPort: 2181
66   internalPort: 2181
67   portName: oof-has-zookeeper
68 ingress:
69   enabled: false