blob: b3bd31726b08c2a30270257a78603abca1fab4db [file] [log] [blame]
Dominic Lunanuovae825fee2018-04-12 14:40:34 +00001# Copyright © 2018 AT&T Intellectual Property. All rights reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000020 readinessRepository: oomk8s
Gary Wubf4b4d82018-05-11 13:26:30 -070021 readinessImage: readiness-check:2.0.0
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000022 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
24
25#################################################################
26# Application configuration defaults.
27#################################################################
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000028pullPolicy: Always
29
30# application images
31repository: nexus3.onap.org:10001
32
Gary Wu7a69b082018-05-08 07:28:24 -070033image: onap/dmaap/buscontroller:latest
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000034
35
36# application configuration
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000037dmaapMessageRouterService: message-router
38aafURL: https://aaf-authz/
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000039topicMgrUser: m23456@dmaapbc.onap.org
40topicMgrPwd: onapdemo
41adminUser: m12345@dmaapbc.onap.org
42adminPwd: onapdemo
43
44nodeSelector: {}
45
46affinity: {}
47
48# probe configuration parameters
49liveness:
50 initialDelaySeconds: 10
51 periodSeconds: 10
52 # necessary to disable liveness probe when setting breakpoints
53 # in debugger so K8s doesn't restart unresponsive container
54 enabled: false
55
56readiness:
57 initialDelaySeconds: 10
58 periodSeconds: 10
59
60
61service:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000062 type: NodePort
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000063 name: dmaap-bc
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000064 portName: dmaap-bc
65 portName2: dmaap-bc
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000066 externalPort: 8080
67 internalPort: 8080
68 externalPort2: 8443
69 internalPort2: 8443
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000070 nodePort: 41
71 nodePort2: 42
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000072
73
74# application configuration override for postgres
75postgres:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000076 nameOverride: dbc-pg
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000077 service:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000078 name: dbc-postgres
79 name2: dbc-pg-primary
80 name3: dbc-pg-replica
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000081 container:
82 name:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000083 primary: dbc-pg-primary
84 replica: dbc-pg-replica
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000085 config:
86 pgUserName: dmaap_admin
87 pgDatabase: dmaap
88 pgPrimaryPassword: onapdemodb
89 pgUserPassword: onapdemodb
90 pgRootPassword: onapdemodb
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000091 persistence:
92 mountSubPath: dbc/data
93 mountInitPath: dbc
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000094
95ingress:
96 enabled: false
97
98resources: {}
99 # We usually recommend not to specify default resources and to leave this as a conscious
100 # choice for the user. This also increases chances charts run on environments with little
101 # resources, such as Minikube. If you do want to specify resources, uncomment the following
102 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
103 #
104 # Example:
105 # Configure resource requests and limits
106 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
107 # Minimum memory for development is 2 CPU cores and 4GB memory
108 # Minimum memory for production is 4 CPU cores and 8GB memory
109#resources:
110# limits:
111# cpu: 2
112# memory: 4Gi
113# requests:
114# cpu: 2
115# memory: 4Gi