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