Sync robot_properties between HEAT and OOM
[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 # probe configuration parameters
52 liveness:
53   initialDelaySeconds: 10
54   periodSeconds: 10
55   # necessary to disable liveness probe when setting breakpoints
56   # in debugger so K8s doesn't restart unresponsive container
57   enabled: true
58 readiness:
59   initialDelaySeconds: 10
60   periodSeconds: 10
61 service:
62   type: ClusterIP
63   name: oof-has-zk
64   externalPort: 2181
65   internalPort: 2181
66   portName: oof-has-zookeeper
67 ingress:
68   enabled: false