Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / dcaegen2-services / components / dcae-datalake-feeder / values.yaml
1 # ================================ LICENSE_START =============================
2 # ============================================================================
3 #  Copyright (C) 2021 Wipro Limited.
4 #  Copyright (c) 2022 J. F. Lucas. All rights reserved.
5 # ============================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ================================= LICENSE_END ==============================
18
19 #################################################################
20 # Global Configuration Defaults.
21 #################################################################
22 global:
23   nodePortPrefix: 302
24   nodePortPrefixExt: 304
25   centralizedLoggingEnabled: true
26
27 #################################################################
28 # Filebeat Configuration Defaults.
29 #################################################################
30 filebeatConfig:
31   logstashServiceName: log-ls
32   logstashPort: 5044
33
34 #################################################################
35 # Secrets Configuration.
36 #################################################################
37 secrets:
38   - uid: &aafCredsUID aafcreds
39     type: basicAuth
40     login: '{{ .Values.aafCreds.identity }}'
41     password: '{{ .Values.aafCreds.password }}'
42     passwordPolicy: required
43   - uid: &pgUserCredsSecretUid pg-user-creds
44     name: &pgUserCredsSecretName '{{ include "common.release" . }}-datalake-pg-user-creds'
45     type: basicAuth
46     externalSecret: '{{ ternary "" (tpl (default "" .Values.postgres.config.pgUserExternalSecret) .) (hasSuffix "datalake-pg-user-creds" .Values.postgres.config.pgUserExternalSecret) }}'
47     login: '{{ .Values.postgres.config.pgUserName }}'
48     password: '{{ .Values.postgres.config.pgUserPassword }}'
49     passwordPolicy: generate
50
51 #################################################################
52 # InitContainer Images.
53 #################################################################
54 tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
55
56 #################################################################
57 # Application Configuration Defaults.
58 #################################################################
59 # Application Image
60 image: onap/org.onap.dcaegen2.services.datalakefeeder:1.1.1
61 pullPolicy: Always
62
63 # Log directory where logging sidecar should look for log files
64 # if path is set to null sidecar won't be deployed in spite of
65 # global.centralizedLoggingEnabled setting.
66 log:
67   path: /var/log/ONAP/dcaegen2/services/datalake
68 logConfigMapNamePrefix: '{{ include "common.fullname" . }}'
69
70 # Directory where TLS certs should be stored
71 # if absent, no certs will be retrieved and stored
72 certDirectory: /opt/app/datalake/etc/certs
73
74 # TLS role -- set to true if microservice acts as server
75 # If true, an init container will retrieve a server cert
76 # and key from AAF and mount them in certDirectory.
77 tlsServer: true
78
79 # Dependencies
80 readinessCheck:
81   wait_for:
82     - aaf-cm
83     - &postgresName dcae-datalake-postgres
84
85 # Probe Configuration
86 readiness:
87   initialDelaySeconds: 90
88   periodSeconds: 90
89   timeoutSeconds: 10
90   path: /datalake/v1/topics
91   scheme: HTTP
92   port: 1680
93
94 # Service Configuration
95 service:
96   type: ClusterIP
97   name: dl-feeder
98   ports:
99     - name: http
100       port: 1680
101       port_protocol: http
102
103 # AAF Credentials
104 aafCreds:
105   identity: dcae@dcae.onap.org
106   password: demo123456!
107
108 credentials:
109 - name: PG_USER
110   uid:  *pgUserCredsSecretUid
111   key: login
112 - name: PG_PASSWORD
113   uid: *pgUserCredsSecretUid
114   key: password
115
116 # Initial Application Configuration
117 applicationConfig:
118   PG_HOST: dcae-datalake-pg-primary
119   PG_PORT: 5432
120   PG_USER: ${PG_USER}
121   PG_PASSWORD: ${PG_PASSWORD}
122   PG_DB: datalake
123   HOSTNAME: dcae-datalake-feeder
124   CONSUL_HOST: consul
125   CONFIG_BINDING_SERVICE: 30408
126
127 applicationEnv:
128   PG_HOST: dcae-datalake-pg-primary
129   PG_PORT: '5432'
130   PG_USER:
131     secretUid: *pgUserCredsSecretUid
132     key: login
133   PG_PASSWORD:
134     secretUid: *pgUserCredsSecretUid
135     key: password
136   PG_DB: datalake
137
138 # Resource Limit Flavor -By Default Using Small
139 flavor: small
140
141 # Segregation for Different Environment (Small and Large)
142 resources:
143   small:
144     limits:
145       cpu: 1
146       memory: 1Gi
147     requests:
148       cpu: 1
149       memory: 1Gi
150   large:
151     limits:
152       cpu: 2
153       memory: 2Gi
154     requests:
155       cpu: 2
156       memory: 2Gi
157   unlimited: {}
158
159 #################################################################
160 # Application configuration Overriding Defaults in the Postgres.
161 #################################################################
162 postgres:
163   nameOverride: *postgresName
164   service:
165     name: *postgresName
166     name2: dcae-datalake-pg-primary
167     name3: dcae-datalake-pg-replica
168   container:
169     name:
170       primary: dcae-datalake-pg-primary
171       replica: dcae-datalake-pg-replica
172   persistence:
173     mountSubPath: datalake/data
174     mountInitPath: datalake
175   config:
176     pgUserName: datalake
177     pgDatabase: datalake
178     pgUserExternalSecret: *pgUserCredsSecretName
179
180 #Pods Service Account
181 serviceAccount:
182   nameOverride: dcae-datalake-feeder
183   roles:
184     - read