b06a67b71b525b75b3b7f60bf4492695ea540151
[oom.git] / kubernetes / oof / charts / oof-has / charts / oof-has-zookeeper / 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 # Default values for mariadb.
16 # This is a YAML-formatted file.
17 # Declare variables to be passed into your templates.
18 global: # global defaults
19   nodePortPrefix: 302
20   persistence: {}
21
22
23 # application image
24 repository: nexus3.onap.org:10001
25 image: zookeeper:3.4
26 pullPolicy: Always
27
28 # default number of instances
29 replicaCount: 1
30 nodeSelector: {}
31 affinity: {}
32 # probe configuration parameters
33 liveness:
34   initialDelaySeconds: 10
35   periodSeconds: 10
36   # necessary to disable liveness probe when setting breakpoints
37   # in debugger so K8s doesn't restart unresponsive container
38   enabled: true
39 readiness:
40   initialDelaySeconds: 10
41   periodSeconds: 10
42 service:
43   type: ClusterIP
44   name: oof-has-zk
45   externalPort: 2181
46   internalPort: 2181
47   portName: oof-has-zookeeper
48 ingress:
49   enabled: false
50 resources: {}