[AAI] Add logs to STDOUT
[aai/oom.git] / components / aai-search-data / values.yaml
1 # Copyright © 2018 Amdocs, Bell Canada, AT&T
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 # Default values for search-data.
16 # This is a YAML-formatted file.
17 # Declare variables to be passed into your templates.
18 global: # global defaults
19   nodePortPrefix: 302
20
21
22 # application image
23 repository: nexus3.onap.org:10001
24 image: onap/search-data-service:1.6.2
25 pullPolicy: Always
26 restartPolicy: Always
27 flavor: small
28 # application configuration
29 config:
30   elasticsearchHttpPort: 9200
31   keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
32   keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
33   trustStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
34
35 # default number of instances
36 replicaCount: 1
37
38 nodeSelector: {}
39
40 affinity: {}
41
42 # probe configuration parameters
43 liveness:
44   initialDelaySeconds: 10
45   periodSeconds: 10
46   # necessary to disable liveness probe when setting breakpoints
47   # in debugger so K8s doesn't restart unresponsive container
48   enabled: true
49
50 readiness:
51   initialDelaySeconds: 10
52   periodSeconds: 10
53
54 service:
55   type: ClusterIP
56   portName: aai-search-data
57   internalPort: 9509
58
59 ingress:
60   enabled: false
61
62 log:
63   logDir: {{ .Values.log.logDir }}
64   root:
65     level:
66       config: {{ .Values.log.root.level.searchData.config }}
67       fproxy: {{ .Values.log.root.level.searchData.fproxy }}
68       rproxy: {{ .Values.log.root.level.searchData.rproxy }}
69   consolePattern: {{ .Values.log.consolePattern.searchData }}
70   logger:
71     apacheCamel: {{ .Values.log.logger.apacheCamel }}
72     apacheCamelComponentRestlet: {{ .Values.log.logger.apacheCamelComponentRestlet }}
73     apacheCamelProcessorInterceptor: {{ .Values.log.logger.apacheCamelProcessorInterceptor }}
74     apacheCommons: {{ .Values.log.logger.apacheCommons }}
75     apacheCommonsHttpclient: {{ .Values.log.logger.apacheCommonsHttpclient }}
76     apacheCoyote: {{ .Values.log.logger.apacheCoyote }}
77     apacheCxf: {{ .Values.log.logger.apacheCxf }}
78     apacheCxfJaxrsInterceptor: {{ .Values.log.logger.apacheCxfJaxrsInterceptor }}
79     apacheCxfService: {{ .Values.log.logger.apacheCxfService }}
80     apacheJasper: {{ .Values.log.logger.apacheJasper }}
81     blogSpringJms: {{ .Values.log.logger.blogSpringJms }}
82     openecompSa: {{ .Values.log.logger.openecompSa }}
83     qosLogbackClassic: {{ .Values.log.logger.qosLogbackClassic }}
84     qosLogbackCore: {{ .Values.log.logger.qosLogbackCore }}
85     restlet: {{ .Values.log.logger.restlet }}
86     sf: {{ .Values.log.logger.sf }}
87     springframework: {{ .Values.log.logger.springframework }}
88     springframeworkBeans: {{ .Values.log.logger.springframeworkBeans }}
89     springframeworkWeb: {{ .Values.log.logger.springframeworkWeb }}
90
91 resources:
92   small:
93     limits:
94       cpu: 2
95       memory: 4Gi
96     requests:
97       cpu: 0.25
98       memory: 750Mi
99   large:
100     limits:
101       cpu: 4
102       memory: 8Gi
103     requests:
104       cpu: 0.5
105       memory: 1Gi
106   unlimited: {}