[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / sdnc / components / dmaap-listener / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
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   readinessImage: onap/oom/readiness:3.0.1
21   loggingRepository: docker.elastic.co
22   loggingImage: beats/filebeat:5.5.0
23   # envsusbt
24   envsubstImage: dibi/envsubst
25   mariadbGalera:
26     #This flag allows SO to instantiate its own mariadb-galera cluster
27     #If shared instance is used, this chart assumes that DB already exists
28     localCluster: false
29     service: mariadb-galera
30     internalPort: 3306
31     nameOverride: mariadb-galera
32
33 #################################################################
34 # Secrets metaconfig
35 #################################################################
36 secrets:
37   - uid: db-secret
38     name: &dbSecretName '{{ include "common.release" . }}-sdnc-dmaap-listener-db-secret'
39     type: basicAuth
40     # This is a nasty trick that allows you override this secret using external one
41     # with the same field that is used to pass this to subchart
42     externalSecret: '{{ ternary "" (tpl (default "" (index .Values "mariadb-galera" "config" "userCredentialsExternalSecret")) .) (hasSuffix "sdnc-dmaap-listener-db-secret" (index .Values "mariadb-galera" "config" "userCredentialsExternalSecret"))}}'
43     login: '{{ index .Values "mariadb-galera" "config" "userName" }}'
44     password: '{{ index .Values "mariadb-galera" "config" "userPassword" }}'
45     passwordPolicy: required
46   - uid: odl-creds
47     type: basicAuth
48     externalSecret: '{{ tpl (default "" .Values.config.odlCredsExternalSecret) . }}'
49     login: '{{ .Values.config.odlUser }}'
50     password: '{{ .Values.config.odlPassword }}'
51     passwordPolicy: required
52
53 #################################################################
54 # Application configuration defaults.
55 #################################################################
56 # application image
57 repository: nexus3.onap.org:10001
58 image: onap/sdnc-dmaap-listener-image:2.0.3
59 pullPolicy: Always
60
61 # flag to enable debugging - application support required
62 debugEnabled: false
63
64 # application configuration
65 config:
66   dmaapPort: 3904
67   sdncChartName: sdnc
68   sdncPort: 8282
69   msgRouterContainerName: message-router
70   configDir: /opt/onap/sdnc/data/properties
71   odlUser: admin
72   odlPassword: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
73   # odlCredsExternalSecret: some secret
74
75 mariadb-galera:
76   config:
77     userCredentialsExternalSecret: *dbSecretName
78     userName: sdnctl
79     userPassword: gamma
80     mysqlDatabase: sdnctl
81   nameOverride: dmaap-listener-galera
82   service:
83     name: dmaap-listener-galera
84     portName: dmaap-listener-galera
85     internalPort: 3306
86   replicaCount: 1
87   persistence:
88     enabled: true
89     mountSubPath: dmaap-listener/maria/data
90
91 # default number of instances
92 replicaCount: 1
93
94 nodeSelector: {}
95
96 affinity: {}
97
98 # probe configuration parameters
99 liveness:
100   initialDelaySeconds: 10
101   periodSeconds: 10
102   # necessary to disable liveness probe when setting breakpoints
103   # in debugger so K8s doesn't restart unresponsive container
104   enabled: true
105
106 readiness:
107   initialDelaySeconds: 10
108   periodSeconds: 10
109
110 ingress:
111   enabled: false
112
113 service:
114   name: sdnc-dmaap-listener
115
116 #Resource limit flavor -By default using small
117 flavor: small
118 #Segregation for different environment (small and large)
119
120 resources:
121   small:
122     limits:
123       cpu: 2
124       memory: 2Gi
125     requests:
126       cpu: 100m
127       memory: 1Gi
128   large:
129     limits:
130       cpu: 2
131       memory: 4Gi
132     requests:
133       cpu: 1
134       memory: 2Gi
135   unlimited: {}