blob: 2d791df6c66f9d7a07d71f7d9a01e9d89166dcaa [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
dglFromAtt671f59b2019-03-13 15:50:40 +000033image: onap/dmaap/dmaap-bc:1.1.1
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000034
35
36# application configuration
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000037dmaapMessageRouterService: message-router
dglFromAtt671f59b2019-03-13 15:50:40 +000038# change the following value to point to Windriver instance maintained
39# but AAF team.
40# e.g.
41#aafURL: https://aaf-onap-test.osaaf.org:8095/proxy/
42aafURL: https://aaf-service:8100/
dglFromAtt82340072018-10-16 21:53:34 +000043topicMgrUser: dmaap-bc-topic-mgr@dmaap-bc-topic-mgr.onap.org
44topicMgrPwd: demo123456!
45adminUser: aaf_admin@people.osaaf.org
46adminPwd: demo123456!
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000047
dglFromAttce0f3b62018-10-31 22:02:50 +000048# for Casablanca default deployment, leave this true to
49# get a topic namespace that matches MR. When set to false,
50# it will compose the topic namespace using the kubernetes namespace value
51fixedTopicNamespace: true
52
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000053nodeSelector: {}
54
55affinity: {}
56
57# probe configuration parameters
58liveness:
59 initialDelaySeconds: 10
60 periodSeconds: 10
61 # necessary to disable liveness probe when setting breakpoints
62 # in debugger so K8s doesn't restart unresponsive container
63 enabled: false
64
65readiness:
66 initialDelaySeconds: 10
67 periodSeconds: 10
68
69
70service:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000071 type: NodePort
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000072 name: dmaap-bc
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000073 portName: dmaap-bc
74 portName2: dmaap-bc
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000075 externalPort: 8080
76 internalPort: 8080
77 externalPort2: 8443
78 internalPort2: 8443
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000079 nodePort: 41
80 nodePort2: 42
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000081
82
83# application configuration override for postgres
84postgres:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000085 nameOverride: dbc-pg
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000086 service:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000087 name: dbc-postgres
88 name2: dbc-pg-primary
89 name3: dbc-pg-replica
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000090 container:
91 name:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000092 primary: dbc-pg-primary
93 replica: dbc-pg-replica
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000094 config:
95 pgUserName: dmaap_admin
96 pgDatabase: dmaap
97 pgPrimaryPassword: onapdemodb
98 pgUserPassword: onapdemodb
99 pgRootPassword: onapdemodb
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +0000100 persistence:
101 mountSubPath: dbc/data
102 mountInitPath: dbc
jasmineWenfb2b4f32018-10-11 00:23:58 +0000103 pgpool:
104 nameOverride: dbc-pgpool
105 service:
106 name: dbc-pgpool
107 credentials:
108 pgusername: dmaap_admin
109 pgpassword: onapdemodb
110 container:
111 name:
112 primary: dbc-pgpool-primary
113 replica: dbc-pgpool-replica
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000114
115ingress:
116 enabled: false
117
Prateekinlinux9f5dc042018-09-20 14:08:54 +0000118# Resource Limit flavor -By Default using small
119flavor: small
120# Segregation for Different environment (Small and Large)
121resources:
122 small:
123 limits:
124 cpu: 2
125 memory: 4Gi
126 requests:
127 cpu: 1
128 memory: 1Gi
129 large:
130 limits:
131 cpu: 4
132 memory: 8Gi
133 requests:
134 cpu: 2
135 memory: 2Gi
136 unlimited: {}