Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / aaf / components / 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 global:
17   nodePortPrefix: 302
18   persistence:
19     enabled: true
20   # Standard OOM
21   pullPolicy: "Always"
22
23   aaf:
24     image: onap/aaf/aaf_core:2.1.23
25     config:
26       image: onap/aaf/aaf_config:2.1.23
27
28 flavor: small
29
30 #################################################################
31 # Application configuration defaults.
32 #################################################################
33 # application image
34 pullPolicy: Always
35
36 replicaCount: 1
37
38 binary: fs
39
40 sequence_order:
41   - service
42   - locate
43
44 nodeSelector: {}
45
46 affinity: {}
47
48 # probe configuration parameters
49 liveness:
50   initialDelaySeconds: 120
51   periodSeconds: 10
52   # necessary to disable liveness probe when setting breakpoints
53   # in debugger so K8s doesn't restart unresponsive container
54   enabled: true
55   port: api
56
57 readiness:
58   initialDelaySeconds: 5
59   periodSeconds: 10
60   port: api
61
62 service:
63   name: aaf-fs
64   type: ClusterIP
65   ports:
66     - name: api
67       port: 8096
68       protocol: http
69
70 ingress:
71   enabled: false
72   service:
73     - baseaddr: "aaffs"
74       name: "aaf-fs"
75       port: 8096
76   config:
77     ssl: "none"
78
79 # Configure resource requests and limits
80 resources:
81   small:
82     limits:
83       cpu: 200m
84       memory: 110Mi
85     requests:
86       cpu: 1m
87       memory: 80Mi
88   large:
89     limits:
90       cpu: 500m
91       memory: 700Mi
92     requests:
93       cpu: 100m
94       memory: 400Mi
95   unlimited: {}