blob: 181368d885e2ee8a69ebefc2bb668a7af4de89b6 [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
20 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
21 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000022 readinessImage: readiness-check:2.0.0
pramodad6382f2018-03-28 22:32:00 +000023 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
Jerome Douceraind18576b2018-03-17 14:21:42 -040025
pramodad6382f2018-03-28 22:32:00 +000026#################################################################
27# Application configuration defaults.
28#################################################################
29# application image
30repository: nexus3.onap.org:10001
su622bc38fbed2018-04-24 11:16:58 -040031image: onap/dmaap/dmaap-mr:1.1.4
pramodad6382f2018-03-28 22:32:00 +000032pullPolicy: Always
33
34nameOverride: dmaap
35
36kafka:
37 nameOverride: global-kafka
38zookeeper:
39 nameOverride: zookeeper
40
41# flag to enable debugging - application support required
42debugEnabled: false
43
44# application configuration
45config:
46 zookeeperPort: 2181
47 kafkaPort: 9092
48
49# default number of instances
50replicaCount: 1
51
52nodeSelector: {}
53
54affinity: {}
55
56# probe configuration parameters
57liveness:
58 initialDelaySeconds: 10
59 periodSeconds: 10
60 # necessary to disable liveness probe when setting breakpoints
61 # in debugger so K8s doesn't restart unresponsive container
62 enabled: true
63
64readiness:
65 initialDelaySeconds: 10
66 periodSeconds: 10
67
68service:
69 type: NodePort
70 name: message-router
BorislavG1ffbd992018-04-24 07:56:27 +000071 portName: message-router
pramodad6382f2018-03-28 22:32:00 +000072 externalPort: 3904
73 nodePort: 27
74 externalPort2: 3905
75 nodePort2: 26
76
77ingress:
78 enabled: false
79
80resources: {}
81 # We usually recommend not to specify default resources and to leave this as a conscious
82 # choice for the user. This also increases chances charts run on environments with little
83 # resources, such as Minikube. If you do want to specify resources, uncomment the following
84 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
85 #
86 # Example:
87 # Configure resource requests and limits
88 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
89 # Minimum memory for development is 2 CPU cores and 4GB memory
90 # Minimum memory for production is 4 CPU cores and 8GB memory
91#resources:
92# limits:
93# cpu: 2
94# memory: 4Gi
95# requests:
96# cpu: 2
97# memory: 4Gi