blob: 7a9d808c0dcdd31b57fa54f81937a217990e098f [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# 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
pramodad6382f2018-03-28 22:32:00 +000015#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
pramodad6382f2018-03-28 22:32:00 +000020 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000021 readinessImage: readiness-check:2.0.0
pramodad6382f2018-03-28 22:32:00 +000022 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
Jerome Douceraind18576b2018-03-17 14:21:42 -040024
pramodad6382f2018-03-28 22:32:00 +000025#################################################################
26# Application configuration defaults.
27#################################################################
28# application image
29repository: nexus3.onap.org:10001
sunil unnava2581e1a2018-08-02 16:34:59 -040030image: onap/dmaap/dmaap-mr:1.1.5
pramodad6382f2018-03-28 22:32:00 +000031pullPolicy: Always
32
pramodad6382f2018-03-28 22:32:00 +000033kafka:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000034 name: message-router-kafka
35 port: 9092
pramodad6382f2018-03-28 22:32:00 +000036zookeeper:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000037 name: message-router-zookeeper
38 port: 2181
pramodad6382f2018-03-28 22:32:00 +000039
40# flag to enable debugging - application support required
41debugEnabled: false
42
43# application configuration
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000044config: {}
pramodad6382f2018-03-28 22:32:00 +000045
46# default number of instances
47replicaCount: 1
48
49nodeSelector: {}
50
51affinity: {}
52
53# probe configuration parameters
54liveness:
55 initialDelaySeconds: 10
56 periodSeconds: 10
57 # necessary to disable liveness probe when setting breakpoints
58 # in debugger so K8s doesn't restart unresponsive container
59 enabled: true
60
61readiness:
62 initialDelaySeconds: 10
63 periodSeconds: 10
64
65service:
66 type: NodePort
67 name: message-router
BorislavG1ffbd992018-04-24 07:56:27 +000068 portName: message-router
pramodad6382f2018-03-28 22:32:00 +000069 externalPort: 3904
70 nodePort: 27
71 externalPort2: 3905
72 nodePort2: 26
73
74ingress:
75 enabled: false
76
77resources: {}
78 # We usually recommend not to specify default resources and to leave this as a conscious
79 # choice for the user. This also increases chances charts run on environments with little
80 # resources, such as Minikube. If you do want to specify resources, uncomment the following
81 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
82 #
83 # Example:
84 # Configure resource requests and limits
85 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
86 # Minimum memory for development is 2 CPU cores and 4GB memory
87 # Minimum memory for production is 4 CPU cores and 8GB memory
88#resources:
89# limits:
90# cpu: 2
91# memory: 4Gi
92# requests:
93# cpu: 2
94# memory: 4Gi