[AAI] Add logs to STDOUT
[aai/oom.git] / components / aai-schema-service / 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 resources.
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 # application image
22 repository: nexus3.onap.org:10001
23 image: onap/aai-schema-service:1.7.5
24 pullPolicy: Always
25 restartPolicy: Always
26 flavor: small
27 # default number of instances
28 replicaCount: 1
29
30 nodeSelector: {}
31
32 affinity: {}
33
34 # probe configuration parameters
35 liveness:
36   initialDelaySeconds: 60
37   periodSeconds: 60
38   # necessary to disable liveness probe when setting breakpoints
39   # in debugger so K8s doesn't restart unresponsive container
40   enabled: false
41
42 readiness:
43   initialDelaySeconds: 60
44   periodSeconds: 10
45
46 service:
47   type: ClusterIP
48   portName: aai-schema-service-8452
49   internalPort: 8452
50   portName2: aai-schema-service-5005
51   internalPort2: 5005
52
53 ingress:
54   enabled: false
55
56 log:
57   logDir: {{ .Values.log.logDir }}
58   root:
59     level: {{ .Values.log.root.level.schemaService }}
60   consolePattern: {{ .Values.log.consolePattern.schemaService }}
61   logger:
62     apache: {{ .Values.log.logger.apache }}
63     apacheCamel: {{ .Values.log.logger.apacheCamel }}
64     apacheCamelComponentRestlet: {{ .Values.log.logger.apacheCamelComponentRestlet }}
65     apacheCamelProcessorInterceptor: {{ .Values.log.logger.apacheCamelProcessorInterceptor }}
66     apacheCommons: {{ .Values.log.logger.apacheCommons }}
67     apacheCommonsHttpclient: {{ .Values.log.logger.apacheCommonsHttpclient }}
68     apacheCoyote: {{ .Values.log.logger.apacheCoyote }}
69     apacheCxf: {{ .Values.log.logger.apacheCxf }}
70     apacheCxfJaxrsInterceptor: {{ .Values.log.logger.apacheCxfJaxrsInterceptor }}
71     apacheCxfService: {{ .Values.log.logger.apacheCxfService }}
72     apacheJasper: {{ .Values.log.logger.apacheJasper }}
73     apacheZookeeper: {{ .Values.log.logger.apacheZookeeper }}
74     attAftDme2: {{ .Values.log.logger.attAftDme2 }}
75     blogSpringJms: {{ .Values.log.logger.blogSpringJms }}
76     codehausGroovy: {{ .Values.log.logger.codehausGroovy }}
77     eclipseJetty: {{ .Values.log.logger.eclipseJetty }}
78     hibernate: {{ .Values.log.logger.hibernate }}
79     hibernateEjb: {{ .Values.log.logger.hibernateEjb }}
80     hibernateValidator: {{ .Values.log.logger.hibernateValidator }}
81     janusgraph: {{ .Values.log.logger.janusgraph }}
82     jaywayJsonpath: {{ .Values.log.logger.jaywayJsonpath }}
83     netflixLoadbalancer: {{ .Values.log.logger.netflixLoadbalancer }}
84     qosLogbackClassic: {{ .Values.log.logger.qosLogbackClassic }}
85     qosLogbackCore: {{ .Values.log.logger.qosLogbackCore }}
86     restlet: {{ .Values.log.logger.restlet }}
87     sf: {{ .Values.log.logger.sf }}
88     springframework: {{ .Values.log.logger.springframework }}
89     springframeworkBeans: {{ .Values.log.logger.springframeworkBeans }}
90     springframeworkWeb: {{ .Values.log.logger.springframeworkWeb }}
91     zookeeper: {{ .Values.log.logger.zookeeper }}
92
93
94   # We usually recommend not to specify default resources and to leave this as a conscious
95   # choice for the user. This also increases chances charts run on environments with little
96   # resources, such as Minikube. If you do want to specify resources, uncomment the following
97   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
98   #
99   # Example:
100   # Configure resource requests and limits
101   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
102   # Minimum memory for development is 2 CPU cores and 4GB memory
103   # Minimum memory for production is 4 CPU cores and 8GB memory
104 #resources:
105 #  limits:
106 #    cpu: 2
107 #    memory: 4Gi
108 #  requests:
109 #    cpu: 2
110 #    memory: 4Gi
111 resources:
112   small:
113     limits:
114       cpu: 2
115       memory: 4Gi
116     requests:
117       cpu: 1
118       memory: 3Gi
119   large:
120     limits:
121       cpu: 4
122       memory: 8Gi
123     requests:
124       cpu: 2
125       memory: 4Gi
126   unlimited: {}