Extend K8S and RIC installation instructions
[it/dep.git] / ric-aux / 80-Auxiliary-Functions / helm / message-router / charts / message-router-zookeeper / values.yaml
1 ################################################################################
2 #   Copyright (c) 2019 AT&T Intellectual Property.                             #
3 #   Copyright (c) 2019 Nokia.                                                  #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17
18
19 #################################################################
20 # Global configuration defaults.
21 #################################################################
22 global:
23   nodePortPrefix: 302
24   readinessRepository: oomk8s
25   readinessImage: readiness-check:2.0.0
26   loggingRepository: docker.elastic.co
27   loggingImage: beats/filebeat:5.5.0
28   ubuntuInitRepository: registry.hub.docker.com
29   persistence: {}
30
31 #################################################################
32 # Application configuration defaults.
33 #################################################################
34 # application image
35 onapRepository: nexus3.onap.org:10001
36 image: onap/dmaap/zookeeper:5.0.0
37 pullPolicy: Always
38 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
39 busyBoxImage: busybox:1.30
40 busyBoxRepository: docker.io
41
42 # flag to enable debugging - application support required
43 debugEnabled: false
44
45 # application configuration
46 config:
47   # gerrit branch where the latest code is checked in
48   gerritBranch: master
49   # gerrit project where the latest code is checked in
50   gerritProject: http://gerrit.onap.org/r/dmaap/messagerouter/messageservice.git
51
52 # default number of instances
53 replicaCount: 3
54
55 nodeSelector: {}
56
57 nodeAffinity: {}
58
59 affinity: {}
60
61 tolerations: {}
62
63 # probe configuration parameters
64 liveness:
65   initialDelaySeconds: 10
66   periodSeconds: 10
67   # necessary to disable liveness probe when setting breakpoints
68   # in debugger so K8s doesn't restart unresponsive container
69   enabled: true
70
71 readiness:
72   initialDelaySeconds: 10
73   periodSeconds: 10
74
75 #Zookeeper properties
76 zk:
77  initLimit: 5
78  syncLimit: 2
79
80 ## Persist data to a persitent volume
81 persistence:
82   enabled: false
83
84   ## A manually managed Persistent Volume and Claim
85   ## Requires persistence.enabled: true
86   ## If defined, PVC must be created manually before volume will be bound
87   # existingClaim:
88   volumeReclaimPolicy: Retain
89
90   ## database data Persistent Volume Storage Class
91   ## If defined, storageClassName: <storageClass>
92   ## If set to "-", storageClassName: "", which disables dynamic provisioning
93   ## If undefined (the default) or set to null, no storageClassName spec is
94   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
95   ##   GKE, AWS & OpenStack)
96   ##
97   # storageClass: "-"
98   accessMode: ReadWriteMany
99   size: 2Gi
100   mountPath: /dockerdata-nfs
101   mountSubPath: message-router/data-zookeeper
102
103
104 rollingUpdate:
105   maxUnavailable: 1
106 service:
107   type: ClusterIP
108   name: message-router-zookeeper
109   portName: message-router-zookeeper
110   clientPortName: client
111   clientPort: 2181
112   serverPortName: server
113   serverPort: 2888
114   leaderElectionPortName: leader-election
115   leaderElectionPort: 3888
116
117 ingress:
118   enabled: false
119
120 # Resource Limit flavor -By Default using small
121 flavor: small
122 # Segregation for Different environment (Small and Large)
123 resources:
124   small:
125     limits:
126       cpu: 2000m
127       memory: 4Gi
128     requests:
129       cpu: 100m
130       memory: 1Gi
131   large:
132     limits:
133       cpu: 4000m
134       memory: 8Gi
135     requests:
136       cpu: 200m
137       memory: 2Gi
138   unlimited: {}