blob: 046f64d9a8c6e608e37335b5d7955b3a8be7f27e [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
Dominic Lunanuova54caf3a2020-03-04 20:14:49 +000033image: onap/dmaap/dmaap-bc:2.0.3
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
Ubuntu3d5d1802019-11-14 23:16:17 +000050#AAF local config
51aafConfig:
52 aafDeployFqi: dmaap-bc@dmaap-bc.onap.org
53 aafDeployPass: demo123456!
54 fqdn: dmaap-bc
55 fqi: dmaap-bc@dmaap-bc.onap.org
56 publicFqdn: dmaap-bc.onap.org
57 cadiLatitude: 0.0
58 cadiLongitude: 0.0
59
60persistence:
61 aafCredsPath: /opt/app/osaaf/local
62
dglFromAttce0f3b62018-10-31 22:02:50 +000063# for Casablanca default deployment, leave this true to
64# get a topic namespace that matches MR. When set to false,
65# it will compose the topic namespace using the kubernetes namespace value
66fixedTopicNamespace: true
67
dglFromAttfb58a9d2019-04-12 20:12:26 +000068# for quicker deployments in dev, ability to disable using postgres
69PG:
70 enabled: true
71
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000072nodeSelector: {}
73
74affinity: {}
75
76# probe configuration parameters
77liveness:
78 initialDelaySeconds: 10
79 periodSeconds: 10
80 # necessary to disable liveness probe when setting breakpoints
81 # in debugger so K8s doesn't restart unresponsive container
82 enabled: false
83
84readiness:
85 initialDelaySeconds: 10
86 periodSeconds: 10
87
88
89service:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000090 type: NodePort
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000091 name: dmaap-bc
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000092 portName: dmaap-bc
93 portName2: dmaap-bc
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000094 externalPort: 8080
95 internalPort: 8080
96 externalPort2: 8443
97 internalPort2: 8443
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000098 nodePort: 41
99 nodePort2: 42
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000100
101
102# application configuration override for postgres
103postgres:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +0000104 nameOverride: dbc-pg
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000105 service:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +0000106 name: dbc-postgres
107 name2: dbc-pg-primary
108 name3: dbc-pg-replica
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000109 container:
110 name:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +0000111 primary: dbc-pg-primary
112 replica: dbc-pg-replica
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000113 config:
114 pgUserName: dmaap_admin
115 pgDatabase: dmaap
116 pgPrimaryPassword: onapdemodb
117 pgUserPassword: onapdemodb
118 pgRootPassword: onapdemodb
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +0000119 persistence:
120 mountSubPath: dbc/data
121 mountInitPath: dbc
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000122
123ingress:
124 enabled: false
Lucjan Bryndza554759c2019-11-27 15:02:14 +0100125 service:
126 - baseaddr: "dmaapbc"
127 name: "dmaap-bc"
128 port: 8443
129 config:
130 ssl: "redirect"
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000131
Prateekinlinux9f5dc042018-09-20 14:08:54 +0000132# Resource Limit flavor -By Default using small
133flavor: small
134# Segregation for Different environment (Small and Large)
135resources:
136 small:
137 limits:
138 cpu: 2
139 memory: 4Gi
140 requests:
141 cpu: 1
142 memory: 1Gi
143 large:
144 limits:
145 cpu: 4
146 memory: 8Gi
147 requests:
148 cpu: 2
149 memory: 2Gi
150 unlimited: {}