Use 2.0.0-ONAP tag instead beijing branch
[oom.git] / kubernetes / dmaap / charts / message-router / charts / message-router-kafka / 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 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20   readinessRepository: oomk8s
21   readinessImage: readiness-check:2.0.0
22   loggingRepository: docker.elastic.co
23   loggingImage: beats/filebeat:5.5.0
24   persistence: {}
25   ubuntuInitRepository: registry.hub.docker.com
26
27 #################################################################
28 # Application configuration defaults.
29 #################################################################
30 # application image
31 repository: docker.io
32 image: wurstmeister/kafka:1.1.0
33 pullPolicy: Always
34 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
35
36 zookeeper:
37   name: message-router-zookeeper
38   port: 2181
39
40 # flag to enable debugging - application support required
41 debugEnabled: false
42
43 # application configuration
44 config:
45   # gerrit branch where the latest code is checked in
46   gerritBranch: 2.0.0-ONAP
47   # gerrit project where the latest code is checked in
48   gerritProject: http://gerrit.onap.org/r/dmaap/messagerouter/messageservice.git
49
50
51 # default number of instances
52 replicaCount: 1
53
54 nodeSelector: {}
55
56 affinity: {}
57
58 # probe configuration parameters
59 liveness:
60   initialDelaySeconds: 10
61   periodSeconds: 10
62   # necessary to disable liveness probe when setting breakpoints
63   # in debugger so K8s doesn't restart unresponsive container
64   enabled: true
65
66 readiness:
67   initialDelaySeconds: 10
68   periodSeconds: 10
69
70 ## Persist data to a persitent volume
71 persistence:
72   enabled: true
73
74   ## A manually managed Persistent Volume and Claim
75   ## Requires persistence.enabled: true
76   ## If defined, PVC must be created manually before volume will be bound
77   # existingClaim:
78   volumeReclaimPolicy: Retain
79
80   ## database data Persistent Volume Storage Class
81   ## If defined, storageClassName: <storageClass>
82   ## If set to "-", storageClassName: "", which disables dynamic provisioning
83   ## If undefined (the default) or set to null, no storageClassName spec is
84   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
85   ##   GKE, AWS & OpenStack)
86   ##
87   # storageClass: "-"
88   accessMode: ReadWriteMany
89   size: 2Gi
90   mountPath: /dockerdata-nfs
91   mountSubPath: message-router/data-kafka
92
93 service:
94   type: NodePort
95   name: message-router-kafka
96   portName: message-router-kafka
97   internalPort: 9092
98   externalPort: 9092
99
100 ingress:
101   enabled: false
102
103 resources: {}
104   # We usually recommend not to specify default resources and to leave this as a conscious
105   # choice for the user. This also increases chances charts run on environments with little
106   # resources, such as Minikube. If you do want to specify resources, uncomment the following
107   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
108   #
109   # Example:
110   # Configure resource requests and limits
111   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
112   # Minimum memory for development is 2 CPU cores and 4GB memory
113   # Minimum memory for production is 4 CPU cores and 8GB memory
114 #resources:
115 #  limits:
116 #    cpu: 2
117 #    memory: 4Gi
118 #  requests:
119 #    cpu: 2
120 #    memory: 4Gi