Merge "[AAF] Add CMPv2 Cert Service"
[oom.git] / kubernetes / aaf / charts / aaf-fs / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications © 2020 AT&T, Orange
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 replicaCount: 1
25
26 binary: fs
27
28 sequence_order:
29   - service
30   - locate
31
32 nodeSelector: {}
33
34 affinity: {}
35
36 # probe configuration parameters
37 liveness:
38   initialDelaySeconds: 120
39   periodSeconds: 10
40   # necessary to disable liveness probe when setting breakpoints
41   # in debugger so K8s doesn't restart unresponsive container
42   enabled: true
43   port: api
44
45 readiness:
46   initialDelaySeconds: 5
47   periodSeconds: 10
48   port: api
49
50 service:
51   name: aaf-fs
52   type: ClusterIP
53   ports:
54     - name: api
55       port: 8096
56       protocol: http
57
58 ingress:
59   enabled: false
60   service:
61     - baseaddr: "aaffs"
62       name: "aaf-fs"
63       port: 8096
64   config:
65     ssl: "none"
66
67 # Configure resource requests and limits
68 resources:
69   small:
70     limits:
71       cpu: 200m
72       memory: 110Mi
73     requests:
74       cpu: 1m
75       memory: 80Mi
76   large:
77     limits:
78       cpu: 500m
79       memory: 700Mi
80     requests:
81       cpu: 100m
82       memory: 400Mi
83   unlimited: {}