blob: 3a18787826934446725e74c2e7a80047b1529588 [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 Lunanuovade7a02b2020-03-12 16:36:09 +000033#repository: 10.12.7.57:5000
34image: onap/dmaap/dmaap-bc:2.0.4
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000035
36
37# application configuration
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000038dmaapMessageRouterService: message-router
pkaras837db952019-04-23 13:45:25 +020039
dglFromAtt671f59b2019-03-13 15:50:40 +000040# change the following value to point to Windriver instance maintained
dglFromAttfb58a9d2019-04-12 20:12:26 +000041# by AAF team.
dglFromAtt671f59b2019-03-13 15:50:40 +000042# e.g.
43#aafURL: https://aaf-onap-test.osaaf.org:8095/proxy/
44aafURL: https://aaf-service:8100/
pkaras837db952019-04-23 13:45:25 +020045aafLocateUrl: https://aaf-locate:8095
dglFromAttfb58a9d2019-04-12 20:12:26 +000046topicMgrUser: dmaap-bc@dmaap-bc.onap.org
dglFromAtt82340072018-10-16 21:53:34 +000047topicMgrPwd: demo123456!
48adminUser: aaf_admin@people.osaaf.org
49adminPwd: demo123456!
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000050
Ubuntu3d5d1802019-11-14 23:16:17 +000051#AAF local config
52aafConfig:
Dominic Lunanuovade7a02b2020-03-12 16:36:09 +000053 aafDeployFqi: deployer@people.osaaf.org
Ubuntu3d5d1802019-11-14 23:16:17 +000054 aafDeployPass: demo123456!
55 fqdn: dmaap-bc
56 fqi: dmaap-bc@dmaap-bc.onap.org
57 publicFqdn: dmaap-bc.onap.org
58 cadiLatitude: 0.0
59 cadiLongitude: 0.0
60
61persistence:
Dominic Lunanuovade7a02b2020-03-12 16:36:09 +000062 aafCredsPath: /opt/app/osaaf/local/
Ubuntu3d5d1802019-11-14 23:16:17 +000063
dglFromAttce0f3b62018-10-31 22:02:50 +000064# for Casablanca default deployment, leave this true to
65# get a topic namespace that matches MR. When set to false,
66# it will compose the topic namespace using the kubernetes namespace value
67fixedTopicNamespace: true
68
dglFromAttfb58a9d2019-04-12 20:12:26 +000069# for quicker deployments in dev, ability to disable using postgres
70PG:
71 enabled: true
72
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000073nodeSelector: {}
74
75affinity: {}
76
77# probe configuration parameters
78liveness:
79 initialDelaySeconds: 10
80 periodSeconds: 10
81 # necessary to disable liveness probe when setting breakpoints
82 # in debugger so K8s doesn't restart unresponsive container
Sylvain Desbureaux0de113e2020-03-10 09:57:25 +010083 port: api
84 enabled: true
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000085
86readiness:
87 initialDelaySeconds: 10
88 periodSeconds: 10
Sylvain Desbureaux0de113e2020-03-10 09:57:25 +010089 port: api
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000090
91
92service:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000093 type: NodePort
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000094 name: dmaap-bc
Sylvain Desbureaux0de113e2020-03-10 09:57:25 +010095 ports:
96 - name: api
97 port: 8443
98 plain_port: 8080
99 port_protocol: http
100 nodePort: 42
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000101
102
103# application configuration override for postgres
104postgres:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +0000105 nameOverride: dbc-pg
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000106 service:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +0000107 name: dbc-postgres
108 name2: dbc-pg-primary
109 name3: dbc-pg-replica
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000110 container:
111 name:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +0000112 primary: dbc-pg-primary
113 replica: dbc-pg-replica
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000114 config:
115 pgUserName: dmaap_admin
116 pgDatabase: dmaap
117 pgPrimaryPassword: onapdemodb
118 pgUserPassword: onapdemodb
119 pgRootPassword: onapdemodb
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +0000120 persistence:
121 mountSubPath: dbc/data
122 mountInitPath: dbc
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000123
124ingress:
125 enabled: false
Lucjan Bryndza554759c2019-11-27 15:02:14 +0100126 service:
127 - baseaddr: "dmaapbc"
128 name: "dmaap-bc"
129 port: 8443
130 config:
131 ssl: "redirect"
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000132
Prateekinlinux9f5dc042018-09-20 14:08:54 +0000133# Resource Limit flavor -By Default using small
134flavor: small
135# Segregation for Different environment (Small and Large)
136resources:
137 small:
138 limits:
139 cpu: 2
140 memory: 4Gi
141 requests:
142 cpu: 1
143 memory: 1Gi
144 large:
145 limits:
146 cpu: 4
147 memory: 8Gi
148 requests:
149 cpu: 2
150 memory: 2Gi
151 unlimited: {}