blob: aab6c237f32ba3216626743498a6e6dd13cbfaf3 [file] [log] [blame]
Dominic Lunanuovae825fee2018-04-12 14:40:34 +00001# Copyright © 2018 AT&T Intellectual Property. All rights reserved.
Durgpal7ad40692018-08-03 07:28:36 +00002# Modifications Copyright © 2018 Amdocs,Bell Canada
Dominic Lunanuovae825fee2018-04-12 14:40:34 +00003#
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#################################################################
19global:
20 nodePortPrefix: 302
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000021 readinessRepository: oomk8s
Gary Wubf4b4d82018-05-11 13:26:30 -070022 readinessImage: readiness-check:2.0.0
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000023 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
25
26#################################################################
27# Application configuration defaults.
28#################################################################
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000029pullPolicy: Always
30
31# application images
32repository: nexus3.onap.org:10001
33
econwar28266fa2019-03-05 16:39:00 +000034image: onap/dmaap/buscontroller:1.0.23
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000035
36
37# application configuration
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000038dmaapMessageRouterService: message-router
dglFromAtt7bc16362019-01-18 20:50:20 +000039aafURL: https://aaf-onap-test.osaaf.org:8095/proxy/
dglFromAtt82340072018-10-16 21:53:34 +000040topicMgrUser: dmaap-bc-topic-mgr@dmaap-bc-topic-mgr.onap.org
41topicMgrPwd: demo123456!
42adminUser: aaf_admin@people.osaaf.org
43adminPwd: demo123456!
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000044
dglFromAttce0f3b62018-10-31 22:02:50 +000045# 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
48fixedTopicNamespace: true
49
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000050nodeSelector: {}
51
52affinity: {}
53
54# probe configuration parameters
55liveness:
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
62readiness:
63 initialDelaySeconds: 10
64 periodSeconds: 10
65
66
67service:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000068 type: NodePort
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000069 name: dmaap-bc
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000070 portName: dmaap-bc
71 portName2: dmaap-bc
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000072 externalPort: 8080
73 internalPort: 8080
74 externalPort2: 8443
75 internalPort2: 8443
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000076 nodePort: 41
77 nodePort2: 42
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000078
79
80# application configuration override for postgres
81postgres:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000082 nameOverride: dbc-pg
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000083 service:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000084 name: dbc-postgres
85 name2: dbc-pg-primary
86 name3: dbc-pg-replica
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000087 container:
88 name:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000089 primary: dbc-pg-primary
90 replica: dbc-pg-replica
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000091 config:
92 pgUserName: dmaap_admin
93 pgDatabase: dmaap
94 pgPrimaryPassword: onapdemodb
95 pgUserPassword: onapdemodb
96 pgRootPassword: onapdemodb
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000097 persistence:
98 mountSubPath: dbc/data
99 mountInitPath: dbc
jasmineWenfb2b4f32018-10-11 00:23:58 +0000100 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
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000111
112ingress:
113 enabled: false
114
Prateekinlinux9f5dc042018-09-20 14:08:54 +0000115# Resource Limit flavor -By Default using small
116flavor: small
117# Segregation for Different environment (Small and Large)
118resources:
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: {}