Merge message-router chart under dmaap
[oom.git] / kubernetes / dmaap / charts / dmaap-bus-controller / values.yaml
1 # Copyright © 2018  AT&T Intellectual Property.  All rights reserved.
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:1.1.1
23   loggingRepository: docker.elastic.co
24   loggingImage: beats/filebeat:5.5.0
25
26 #################################################################
27 # Application configuration defaults.
28 #################################################################
29 #nsPrefix: onap
30 pullPolicy: Always
31
32 # application images
33 repository: nexus3.onap.org:10001
34
35 image: onap/dmaap/buscontroller:1.0.8
36
37
38 # application configuration
39 dmaapMessageRouterService: message-router
40 aafURL: https://aaf-authz/
41 topicMgrUser: m23456@dmaapbc.onap.org
42 topicMgrPwd: onapdemo
43 adminUser: m12345@dmaapbc.onap.org
44 adminPwd: onapdemo
45
46 nodeSelector: {}
47
48 affinity: {}
49
50 # probe configuration parameters
51 liveness:
52   initialDelaySeconds: 10
53   periodSeconds: 10
54   # necessary to disable liveness probe when setting breakpoints
55   # in debugger so K8s doesn't restart unresponsive container
56   enabled: false
57
58 readiness:
59   initialDelaySeconds: 10
60   periodSeconds: 10
61
62
63 service:
64   type: NodePort
65   name: dmaap-bc
66   portName: dmaap-bc
67   portName2: dmaap-bc
68   externalPort: 8080
69   internalPort: 8080
70   externalPort2: 8443
71   internalPort2: 8443
72   nodePort: 41
73   nodePort2: 42
74
75
76 # application configuration override for postgres
77 postgres:
78   nameOverride: dbc-pg
79   service:
80     name: dbc-postgres
81     name2: dbc-pg-primary
82     name3: dbc-pg-replica
83   container:
84     name:
85       primary: dbc-pg-primary
86       replica: dbc-pg-replica
87   config:
88     pgUserName: dmaap_admin
89     pgDatabase: dmaap
90     pgPrimaryPassword: onapdemodb
91     pgUserPassword: onapdemodb
92     pgRootPassword: onapdemodb
93   persistence:
94     mountSubPath: dbc/data
95     mountInitPath: dbc
96
97 ingress:
98   enabled: false
99
100 resources: {}
101   # We usually recommend not to specify default resources and to leave this as a conscious
102   # choice for the user. This also increases chances charts run on environments with little
103   # resources, such as Minikube. If you do want to specify resources, uncomment the following
104   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
105   #
106   # Example:
107   # Configure resource requests and limits
108   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
109   # Minimum memory for development is 2 CPU cores and 4GB memory
110   # Minimum memory for production is 4 CPU cores and 8GB memory
111 #resources:
112 #  limits:
113 #    cpu: 2
114 #    memory: 4Gi
115 #  requests:
116 #    cpu: 2
117 #    memory: 4Gi