139e3d308ff6984b9030c52614a0c7fb7a2e0949
[oom.git] / kubernetes / dcaemod / components / dcaemod-runtime-api / resources / config / base / values.yaml
1 #============LICENSE_START========================================================
2 #=================================================================================
3 # Copyright (c) 2021 AT&T Intellectual Property. All rights reserved.
4 # ================================================================================
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 # ============LICENSE_END=========================================================
17 #################################################################
18 # Global configuration defaults.
19 #################################################################
20 global:
21   nodePortPrefix: 302
22   nodePortPrefixExt: 304
23
24 #################################################################
25 # Filebeat configuration defaults.
26 #################################################################
27 filebeatConfig:
28   logstashServiceName: log-ls
29   logstashPort: 5044
30
31 #################################################################
32 # initContainer images.
33 #################################################################
34 tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
35 consulLoaderImage: onap/org.onap.dcaegen2.deployments.consul-loader-container:1.1.0
36
37 #################################################################
38 # Application configuration defaults.
39 #################################################################
40 # application image
41 image: TBD #DONE
42 pullPolicy: Always
43
44 #policy sync image
45 dcaePolicySyncImage: onap/org.onap.dcaegen2.deployments.dcae-services-policy-sync:1.0.1
46
47 #postgres enable/disable
48 postgres:
49   enabled: false
50
51 # log directory where logging sidecar should look for log files
52 # if absent, no sidecar will be deployed
53 #logDirectory: TBD  #/opt/app/VESCollector/logs #DONE
54
55 # directory where TLS certs should be stored
56 # if absent, no certs will be retrieved and stored
57 #certDirectory: TBD #/opt/app/dcae-certificate  #DONE
58
59 # TLS role -- set to true if microservice acts as server
60 # If true, an init container will retrieve a server cert
61 # and key from AAF and mount them in certDirectory.
62 #tlsServer: TBD  #DONE
63
64 # dependencies
65 readinessCheck:
66   wait_for:
67     - dcae-config-binding-service
68     - aaf-cm
69
70 # probe configuration  #NEED DISCUSSION
71 readiness:
72   initialDelaySeconds: TBD
73   periodSeconds: TBD
74   path: TBD
75   scheme: TBD
76   port: TBD
77
78 # Resource Limit flavor -By Default using small
79 flavor: small
80 # Segregation for Different environment (Small and Large)
81 resources:
82   small:
83     limits:
84       cpu: 2
85       memory: 2Gi
86     requests:
87       cpu: 1
88       memory: 1Gi
89   large:
90     limits:
91       cpu: 4
92       memory: 4Gi
93     requests:
94       cpu: 2
95       memory: 2Gi
96   unlimited: {}
97 serviceAccount:
98   nameOverride: TBD
99   roles:
100     - read