[AAI] Add logs to STDOUT
[aai/oom.git] / components / aai-babel / values.yaml
1 # Copyright © 2018 Amdocs, AT&T
2 # Modifications Copyright © 2018 Bell Canada
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
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   loggingImage: beats/filebeat:5.5.0
21
22 #################################################################
23 # Application configuration defaults.
24 #################################################################
25
26 # application image
27 image: onap/babel:1.6.2
28
29 flavor: small
30
31 # application configuration
32 config:
33   keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
34   keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
35
36 # default number of instances
37 replicaCount: 1
38
39 nodeSelector: {}
40
41 affinity: {}
42
43 # probe configuration parameters
44 liveness:
45   initialDelaySeconds: 10
46   periodSeconds: 10
47   # necessary to disable liveness probe when setting breakpoints
48   # in debugger so K8s doesn't restart unresponsive container
49   enabled: false
50
51 readiness:
52   initialDelaySeconds: 10
53   periodSeconds: 10
54
55 service:
56   type: NodePort
57   portName: babel
58   externalPort: 9516
59   internalPort: 9516
60   nodePort: 79
61
62 ingress:
63   enabled: false
64   service:
65     - baseaddr: "aaibabel"
66       name: "aai-babel"
67       port: 9516
68   config:
69     ssl: "redirect"
70
71 log:
72   logDir: {{ .Values.log.logDir }}
73   root:
74     level: {{ .Values.log.root.level.babel }}
75   consolePattern:
76     babel:
77       config: {{ .Values.log.consolePattern.babel.config }}
78       froxy: {{ .Values.log.consolePattern.babel.froxy }}
79       rproxy: {{ .Values.log.consolePattern.babel.rproxy }}
80   logger:
81     apache: {{ .Values.log.logger.apache }}
82     apacheCamel: {{ .Values.log.logger.apacheCamel }}
83     apacheCamelComponentRestlet: {{ .Values.log.logger.apacheCamelComponentRestlet }}
84     apacheCamelProcessorInterceptor: {{ .Values.log.logger.apacheCamelProcessorInterceptor }}
85     apacheCommons: {{ .Values.log.logger.apacheCommons }}
86     apacheCxf: {{ .Values.log.logger.apacheCxf }}
87     apacheCxfJaxrsInterceptor: {{ .Values.log.logger.apacheCxfJaxrsInterceptor }}
88     apacheCxfService: {{ .Values.log.logger.apacheCxfService }}
89     att: {{ .Values.log.logger.att }}
90     qosLogbackClassic: {{ .Values.log.logger.qosLogbackClassic }}
91     qosLogbackCore: {{ .Values.log.logger.qosLogbackCore }}
92     restlet: {{ .Values.log.logger.restlet }}
93     springframework: {{ .Values.log.logger.springframework }}
94     springframeworkBeans: {{ .Values.log.logger.springframeworkBeans }}
95     springframeworkWeb: {{ .Values.log.logger.springframeworkWeb }}
96
97 resources:
98   small:
99     limits:
100       cpu: 2
101       memory: 4Gi
102     requests:
103       cpu: 0.5
104       memory: 1Gi
105   large:
106     limits:
107       cpu: 4
108       memory: 8Gi
109     requests:
110       cpu: 2
111       memory: 2Gi
112   unlimited: {}