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