Merge "Support execution control of SDC Workflow init"
[oom.git] / kubernetes / dmaap / components / dmaap-bus-controller / values.yaml
1 # Copyright © 2018  AT&T Intellectual Property.  All rights reserved.
2 # Modifications Copyright © 2018 Amdocs,Bell Canada
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   nodePortPrefix: 302
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 pullPolicy: Always
30
31 # application images
32 repository: nexus3.onap.org:10001
33
34 image: onap/dmaap/buscontroller:1.0.23
35
36
37 # application configuration
38 dmaapMessageRouterService: message-router
39 aafURL: https://aaf-onap-test.osaaf.org:8095/proxy/
40 topicMgrUser: dmaap-bc-topic-mgr@dmaap-bc-topic-mgr.onap.org
41 topicMgrPwd: demo123456!
42 adminUser: aaf_admin@people.osaaf.org
43 adminPwd: demo123456!
44
45 # for Casablanca default deployment, leave this true to
46 # get a topic namespace that matches MR.  When set to false,
47 # it will compose the topic namespace using the kubernetes namespace value
48 fixedTopicNamespace: true
49
50 nodeSelector: {}
51
52 affinity: {}
53
54 # probe configuration parameters
55 liveness:
56   initialDelaySeconds: 10
57   periodSeconds: 10
58   # necessary to disable liveness probe when setting breakpoints
59   # in debugger so K8s doesn't restart unresponsive container
60   enabled: false
61
62 readiness:
63   initialDelaySeconds: 10
64   periodSeconds: 10
65
66
67 service:
68   type: NodePort
69   name: dmaap-bc
70   portName: dmaap-bc
71   portName2: dmaap-bc
72   externalPort: 8080
73   internalPort: 8080
74   externalPort2: 8443
75   internalPort2: 8443
76   nodePort: 41
77   nodePort2: 42
78
79
80 # application configuration override for postgres
81 postgres:
82   nameOverride: dbc-pg
83   service:
84     name: dbc-postgres
85     name2: dbc-pg-primary
86     name3: dbc-pg-replica
87   container:
88     name:
89       primary: dbc-pg-primary
90       replica: dbc-pg-replica
91   config:
92     pgUserName: dmaap_admin
93     pgDatabase: dmaap
94     pgPrimaryPassword: onapdemodb
95     pgUserPassword: onapdemodb
96     pgRootPassword: onapdemodb
97   persistence:
98     mountSubPath: dbc/data
99     mountInitPath: dbc
100   pgpool:
101     nameOverride: dbc-pgpool
102     service:
103       name: dbc-pgpool
104     credentials:
105       pgusername: dmaap_admin
106       pgpassword: onapdemodb
107     container:
108       name:
109         primary: dbc-pgpool-primary
110         replica: dbc-pgpool-replica
111
112 ingress:
113   enabled: false
114
115 # Resource Limit flavor -By Default using small
116 flavor: small
117 # Segregation for Different environment (Small and Large)
118 resources:
119   small:
120     limits:
121       cpu: 2
122       memory: 4Gi
123     requests:
124       cpu: 1
125       memory: 1Gi
126   large:
127     limits:
128       cpu: 4
129       memory: 8Gi
130     requests:
131       cpu: 2
132       memory: 2Gi
133   unlimited: {}