Merge "[AAF] Add CMPv2 Cert Service"
[oom.git] / kubernetes / aaf / charts / aaf-service / 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: service
26
27 sequence_order:
28   - cass
29
30 nodeSelector: {}
31
32 affinity: {}
33
34 # probe configuration parameters
35 liveness:
36   initialDelaySeconds: 30
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   port: api
42
43 readiness:
44   initialDelaySeconds: 5
45   periodSeconds: 10
46   port: api
47
48 service:
49   name: aaf-service
50   type: ClusterIP
51   ports:
52     - name: api
53       port: 8100
54       protocol: http
55
56 ingress:
57   enabled: false
58   service:
59     - baseaddr: "aafservice"
60       name: "aaf-service"
61       port: 8100
62   config:
63     ssl: "redirect"
64
65 # Configure resource requests and limits
66 resources:
67   small:
68     limits:
69       cpu: 250m
70       memory: 360Mi
71     requests:
72       cpu: 10m
73       memory: 250Mi
74   large:
75     limits:
76       cpu: 400m
77       memory: 1Gi
78     requests:
79       cpu: 40m
80       memory: 300Mi
81   unlimited: {}