blob: 3acb490e57a23af5fd932c3e8783bcf262c58795 [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
35image:
36 buscontrollerImage: onap/dmaap/buscontroller
37 buscontrollerVersion: 1.0.8
38
39
40# application configuration
41dmaapMessageRouterService: dmaap
42aafURL: https://onap-aaf:8905/proxy/
43topicMgrUser: m23456@dmaapbc.onap.org
44topicMgrPwd: onapdemo
45adminUser: m12345@dmaapbc.onap.org
46adminPwd: onapdemo
47
48nodeSelector: {}
49
50affinity: {}
51
52# probe configuration parameters
53liveness:
54 initialDelaySeconds: 10
55 periodSeconds: 10
56 # necessary to disable liveness probe when setting breakpoints
57 # in debugger so K8s doesn't restart unresponsive container
58 enabled: false
59
60readiness:
61 initialDelaySeconds: 10
62 periodSeconds: 10
63
64
65service:
66 type: ClusterIP
67 name: dmaap-bc
68 externalPort: 8080
69 internalPort: 8080
70 externalPort2: 8443
71 internalPort2: 8443
72
73
74# application configuration override for postgres
75postgres:
76 nameOverride: dbcl-db
77 service:
78 name: dbcl-postgres
79 name2: dbcl-pg-primary
80 name3: dbcl-pg-replica
81 container:
82 name:
83 primary: dbcl-pg-primary
84 replica: dbcl-pg-replica
85 config:
86 pgUserName: dmaap_admin
87 pgDatabase: dmaap
88 pgPrimaryPassword: onapdemodb
89 pgUserPassword: onapdemodb
90 pgRootPassword: onapdemodb
91
92
93ingress:
94 enabled: false
95
96resources: {}
97 # We usually recommend not to specify default resources and to leave this as a conscious
98 # choice for the user. This also increases chances charts run on environments with little
99 # resources, such as Minikube. If you do want to specify resources, uncomment the following
100 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
101 #
102 # Example:
103 # Configure resource requests and limits
104 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
105 # Minimum memory for development is 2 CPU cores and 4GB memory
106 # Minimum memory for production is 4 CPU cores and 8GB memory
107#resources:
108# limits:
109# cpu: 2
110# memory: 4Gi
111# requests:
112# cpu: 2
113# memory: 4Gi