[AAF] No resources limits on PODs
[oom.git] / kubernetes / aaf / charts / aaf-fs / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
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 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20   readinessRepository: oomk8s
21   readinessImage: readiness-check:2.0.0
22 flavor: small
23 #################################################################
24 # Application configuration defaults.
25 #################################################################
26 # application image
27 pullPolicy: Always
28
29
30 nodeSelector: {}
31
32 affinity: {}
33
34 # probe configuration parameters
35 liveness:
36   initialDelaySeconds: 120
37   periodSeconds: 10
38   # necessary to disable liveness probe when setting breakpoints
39   # in debugger so K8s doesn't restart unresponsive container
40   enabled: true
41
42 readiness:
43   initialDelaySeconds: 5
44   periodSeconds: 10
45
46 service:
47   name: aaf-fs
48   type: ClusterIP
49   portName: aaf-fs
50   #targetPort
51   internalPort: 8096
52   #port
53   externalPort: 8096
54
55 ingress:
56   enabled: false
57
58 # Configure resource requests and limits
59 resources:
60  small:
61    limits:
62      cpu: 200m
63      memory: 110Mi
64    requests:
65      cpu: 1m
66      memory: 80Mi
67  large:
68    limits:
69      cpu: 500m
70      memory: 700Mi
71    requests:
72      cpu: 100m
73      memory: 400Mi
74  unlimited: {}