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