blob: 2b4067d88642cab4d5fe577a01b033e7681882ec [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
20 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
21 readinessRepository: oomk8s
22 readinessImage: readiness-check:1.1.1
23 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
25
26#################################################################
27# Application configuration defaults.
28#################################################################
29#nsPrefix: onap
30pullPolicy: Always
31
32# application images
33repository: nexus3.onap.org:10001
34
BorislavGdf11cd52018-05-06 12:55:20 +000035image: onap/dmaap/buscontroller:1.0.8
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000036
37
38# application configuration
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000039dmaapMessageRouterService: message-router
40aafURL: https://aaf-authz/
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000041topicMgrUser: m23456@dmaapbc.onap.org
42topicMgrPwd: onapdemo
43adminUser: m12345@dmaapbc.onap.org
44adminPwd: onapdemo
45
46nodeSelector: {}
47
48affinity: {}
49
50# probe configuration parameters
51liveness:
52 initialDelaySeconds: 10
53 periodSeconds: 10
54 # necessary to disable liveness probe when setting breakpoints
55 # in debugger so K8s doesn't restart unresponsive container
56 enabled: false
57
58readiness:
59 initialDelaySeconds: 10
60 periodSeconds: 10
61
62
63service:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000064 type: NodePort
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000065 name: dmaap-bc
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000066 portName: dmaap-bc
67 portName2: dmaap-bc
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000068 externalPort: 8080
69 internalPort: 8080
70 externalPort2: 8443
71 internalPort2: 8443
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000072 nodePort: 41
73 nodePort2: 42
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000074
75
76# application configuration override for postgres
77postgres:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000078 nameOverride: dbc-pg
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000079 service:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000080 name: dbc-postgres
81 name2: dbc-pg-primary
82 name3: dbc-pg-replica
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000083 container:
84 name:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000085 primary: dbc-pg-primary
86 replica: dbc-pg-replica
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000087 config:
88 pgUserName: dmaap_admin
89 pgDatabase: dmaap
90 pgPrimaryPassword: onapdemodb
91 pgUserPassword: onapdemodb
92 pgRootPassword: onapdemodb
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000093 persistence:
94 mountSubPath: dbc/data
95 mountInitPath: dbc
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000096
97ingress:
98 enabled: false
99
100resources: {}
101 # We usually recommend not to specify default resources and to leave this as a conscious
102 # choice for the user. This also increases chances charts run on environments with little
103 # resources, such as Minikube. If you do want to specify resources, uncomment the following
104 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
105 #
106 # Example:
107 # Configure resource requests and limits
108 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
109 # Minimum memory for development is 2 CPU cores and 4GB memory
110 # Minimum memory for production is 4 CPU cores and 8GB memory
111#resources:
112# limits:
113# cpu: 2
114# memory: 4Gi
115# requests:
116# cpu: 2
117# memory: 4Gi