181368d885e2ee8a69ebefc2bb668a7af4de89b6
[oom.git] / kubernetes / message-router / 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   repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
21   readinessRepository: oomk8s
22   readinessImage: readiness-check:2.0.0
23   loggingRepository: docker.elastic.co
24   loggingImage: beats/filebeat:5.5.0
25
26 #################################################################
27 # Application configuration defaults.
28 #################################################################
29 # application image
30 repository: nexus3.onap.org:10001
31 image: onap/dmaap/dmaap-mr:1.1.4
32 pullPolicy: Always
33
34 nameOverride: dmaap
35
36 kafka:
37   nameOverride: global-kafka
38 zookeeper:
39   nameOverride: zookeeper
40
41 # flag to enable debugging - application support required
42 debugEnabled: false
43
44 # application configuration
45 config:
46   zookeeperPort: 2181
47   kafkaPort: 9092
48
49 # default number of instances
50 replicaCount: 1
51
52 nodeSelector: {}
53
54 affinity: {}
55
56 # probe configuration parameters
57 liveness:
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
64 readiness:
65   initialDelaySeconds: 10
66   periodSeconds: 10
67
68 service:
69   type: NodePort
70   name: message-router
71   portName: message-router
72   externalPort: 3904
73   nodePort: 27
74   externalPort2: 3905
75   nodePort2: 26
76
77 ingress:
78   enabled: false
79
80 resources: {}
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