blob: 14b23e5084ccf154c94bdf077072ac8f02d02108 [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
39dmaapMessageRouterService: dmaap
40aafURL: https://onap-aaf:8905/proxy/
41topicMgrUser: 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:
64 type: ClusterIP
65 name: dmaap-bc
66 externalPort: 8080
67 internalPort: 8080
68 externalPort2: 8443
69 internalPort2: 8443
70
71
72# application configuration override for postgres
73postgres:
74 nameOverride: dbcl-db
75 service:
76 name: dbcl-postgres
77 name2: dbcl-pg-primary
78 name3: dbcl-pg-replica
79 container:
80 name:
81 primary: dbcl-pg-primary
82 replica: dbcl-pg-replica
83 config:
84 pgUserName: dmaap_admin
85 pgDatabase: dmaap
86 pgPrimaryPassword: onapdemodb
87 pgUserPassword: onapdemodb
88 pgRootPassword: onapdemodb
89
90
91ingress:
92 enabled: false
93
94resources: {}
95 # We usually recommend not to specify default resources and to leave this as a conscious
96 # choice for the user. This also increases chances charts run on environments with little
97 # resources, such as Minikube. If you do want to specify resources, uncomment the following
98 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
99 #
100 # Example:
101 # Configure resource requests and limits
102 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
103 # Minimum memory for development is 2 CPU cores and 4GB memory
104 # Minimum memory for production is 4 CPU cores and 8GB memory
105#resources:
106# limits:
107# cpu: 2
108# memory: 4Gi
109# requests:
110# cpu: 2
111# memory: 4Gi