blob: 9f4799b64a554a32ff8c54148eedf947ce7de477 [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
dglFromAtte9e4b842019-05-09 15:21:55 +000033image: onap/dmaap/dmaap-bc:1.1.5
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000034
35
36# application configuration
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000037dmaapMessageRouterService: message-router
pkaras837db952019-04-23 13:45:25 +020038
dglFromAtt671f59b2019-03-13 15:50:40 +000039# change the following value to point to Windriver instance maintained
dglFromAttfb58a9d2019-04-12 20:12:26 +000040# by AAF team.
dglFromAtt671f59b2019-03-13 15:50:40 +000041# e.g.
42#aafURL: https://aaf-onap-test.osaaf.org:8095/proxy/
43aafURL: https://aaf-service:8100/
pkaras837db952019-04-23 13:45:25 +020044aafLocateUrl: https://aaf-locate:8095
dglFromAttfb58a9d2019-04-12 20:12:26 +000045topicMgrUser: dmaap-bc@dmaap-bc.onap.org
dglFromAtt82340072018-10-16 21:53:34 +000046topicMgrPwd: demo123456!
47adminUser: aaf_admin@people.osaaf.org
48adminPwd: demo123456!
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000049
dglFromAttce0f3b62018-10-31 22:02:50 +000050# for Casablanca default deployment, leave this true to
51# get a topic namespace that matches MR. When set to false,
52# it will compose the topic namespace using the kubernetes namespace value
53fixedTopicNamespace: true
54
dglFromAttfb58a9d2019-04-12 20:12:26 +000055# for quicker deployments in dev, ability to disable using postgres
56PG:
57 enabled: true
58
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000059nodeSelector: {}
60
61affinity: {}
62
63# probe configuration parameters
64liveness:
65 initialDelaySeconds: 10
66 periodSeconds: 10
67 # necessary to disable liveness probe when setting breakpoints
68 # in debugger so K8s doesn't restart unresponsive container
69 enabled: false
70
71readiness:
72 initialDelaySeconds: 10
73 periodSeconds: 10
74
75
76service:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000077 type: NodePort
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000078 name: dmaap-bc
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000079 portName: dmaap-bc
80 portName2: dmaap-bc
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000081 externalPort: 8080
82 internalPort: 8080
83 externalPort2: 8443
84 internalPort2: 8443
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000085 nodePort: 41
86 nodePort2: 42
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000087
88
89# application configuration override for postgres
90postgres:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000091 nameOverride: dbc-pg
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000092 service:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000093 name: dbc-postgres
94 name2: dbc-pg-primary
95 name3: dbc-pg-replica
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000096 container:
97 name:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000098 primary: dbc-pg-primary
99 replica: dbc-pg-replica
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000100 config:
101 pgUserName: dmaap_admin
102 pgDatabase: dmaap
103 pgPrimaryPassword: onapdemodb
104 pgUserPassword: onapdemodb
105 pgRootPassword: onapdemodb
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +0000106 persistence:
107 mountSubPath: dbc/data
108 mountInitPath: dbc
jasmineWenfb2b4f32018-10-11 00:23:58 +0000109 pgpool:
110 nameOverride: dbc-pgpool
111 service:
112 name: dbc-pgpool
113 credentials:
114 pgusername: dmaap_admin
115 pgpassword: onapdemodb
116 container:
117 name:
118 primary: dbc-pgpool-primary
119 replica: dbc-pgpool-replica
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000120
121ingress:
122 enabled: false
Lucjan Bryndza554759c2019-11-27 15:02:14 +0100123 service:
124 - baseaddr: "dmaapbc"
125 name: "dmaap-bc"
126 port: 8443
127 config:
128 ssl: "redirect"
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000129
Prateekinlinux9f5dc042018-09-20 14:08:54 +0000130# Resource Limit flavor -By Default using small
131flavor: small
132# Segregation for Different environment (Small and Large)
133resources:
134 small:
135 limits:
136 cpu: 2
137 memory: 4Gi
138 requests:
139 cpu: 1
140 memory: 1Gi
141 large:
142 limits:
143 cpu: 4
144 memory: 8Gi
145 requests:
146 cpu: 2
147 memory: 2Gi
148 unlimited: {}