[MOD/Helm-gen] Add log.path setting for helm-gen
[dcaegen2/platform.git] / mod2 / helm-generator / helmchartgenerator-core / src / test / input / blueprint / base / values.yaml
1 # ============LICENSE_START=======================================================
2 # Copyright (c) 2021-2022 AT&T Intellectual Property. All rights reserved.
3 # ================================================================================
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #      http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 # ============LICENSE_END=========================================================
16
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 #log:
54 #  path: TBD  #/opt/app/VESCollector/logs #DONE
55
56 # directory where TLS certs should be stored
57 # if absent, no certs will be retrieved and stored
58 #certDirectory: TBD #/opt/app/dcae-certificate  #DONE
59
60 # TLS role -- set to true if microservice acts as server
61 # If true, an init container will retrieve a server cert
62 # and key from AAF and mount them in certDirectory.
63 #tlsServer: TBD  #DONE
64
65 # dependencies
66 readinessCheck:
67   wait_for:
68     - dcae-config-binding-service
69     - aaf-cm
70
71 # probe configuration  #NEED DISCUSSION
72 readiness:
73   initialDelaySeconds: TBD
74   periodSeconds: TBD
75   path: TBD
76   scheme: TBD
77   port: TBD
78
79 # Resource Limit flavor -By Default using small
80 flavor: small
81 # Segregation for Different environment (Small and Large)
82 resources:
83   small:
84     limits:
85       cpu: 2
86       memory: 2Gi
87     requests:
88       cpu: 1
89       memory: 1Gi
90   large:
91     limits:
92       cpu: 4
93       memory: 4Gi
94     requests:
95       cpu: 2
96       memory: 2Gi
97   unlimited: {}
98
99 serviceAccount:
100   nameOverride: TBD
101   roles:
102     - read
103