Integration w common/postgres
[oom.git] / kubernetes / dmaap / charts / dmaap-bus-controller / values.yaml
1 # 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 #################################################################
18 global:
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
30 pullPolicy: Always
31
32 # application images
33 repository: nexus3.onap.org:10001
34
35 image:
36   buscontrollerImage: onap/dmaap/buscontroller
37   buscontrollerVersion: 1.0.8
38
39
40 # application configuration
41 dmaapMessageRouterService: dmaap
42 aafURL: https://onap-aaf:8905/proxy/
43 topicMgrUser: m23456@dmaapbc.onap.org
44 topicMgrPwd: onapdemo
45 adminUser: m12345@dmaapbc.onap.org
46 adminPwd: onapdemo
47
48 nodeSelector: {}
49
50 affinity: {}
51
52 # probe configuration parameters
53 liveness:
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
60 readiness:
61   initialDelaySeconds: 10
62   periodSeconds: 10
63
64
65 service:
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
75 postgres:
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
93 ingress:
94   enabled: false
95
96 resources: {}
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