[ESR] Force esr-gui to run as non-root
[oom.git] / kubernetes / aaf / charts / aaf-locate / 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 # Application configuration defaults.
19 #################################################################
20 # application image
21 replicaCount: 1
22
23 binary: locate
24
25 sequence_order:
26   - service
27
28 nodeSelector: {}
29
30 affinity: {}
31
32 # probe configuration parameters
33 liveness:
34   initialDelaySeconds: 30
35   periodSeconds: 10
36   # necessary to disable liveness probe when setting breakpoints
37   # in debugger so K8s doesn't restart unresponsive container
38   enabled: true
39   port: api
40
41 readiness:
42   initialDelaySeconds: 5
43   periodSeconds: 10
44   port: api
45
46 service:
47   name: aaf-locate
48   type: ClusterIP
49   ports:
50     - name: api
51       protocol: http
52       port: 8095
53
54 ingress:
55   enabled: false
56   service:
57     - baseaddr: "aaflocate"
58       name: "aaf-locate"
59       port: 8095
60   config:
61     ssl: "redirect"
62
63 # Configure resource requests and limits
64 resources:
65   small:
66     limits:
67       cpu: 100m
68       memory: 320Mi
69     requests:
70       cpu: 1m
71       memory: 210Mi
72   large:
73     limits:
74       cpu: 400m
75       memory: 1Gi
76     requests:
77       cpu: 40m
78       memory: 500Mi
79   unlimited: {}