Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / aaf / components / aaf-locate / 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
29 flavor: small
30 #################################################################
31 # Application configuration defaults.
32 #################################################################
33 # application image
34 replicaCount: 1
35
36 binary: locate
37
38 sequence_order:
39   - service
40
41 nodeSelector: {}
42
43 affinity: {}
44
45 # probe configuration parameters
46 liveness:
47   initialDelaySeconds: 30
48   periodSeconds: 10
49   # necessary to disable liveness probe when setting breakpoints
50   # in debugger so K8s doesn't restart unresponsive container
51   enabled: true
52   port: api
53
54 readiness:
55   initialDelaySeconds: 5
56   periodSeconds: 10
57   port: api
58
59 service:
60   name: aaf-locate
61   type: ClusterIP
62   ports:
63     - name: api
64       protocol: http
65       port: 8095
66
67 ingress:
68   enabled: false
69   service:
70     - baseaddr: "aaflocate"
71       name: "aaf-locate"
72       port: 8095
73   config:
74     ssl: "redirect"
75
76 # Configure resource requests and limits
77 resources:
78  small:
79    limits:
80      cpu: 500m
81      memory: 320Mi
82    requests:
83      cpu: 1m
84      memory: 210Mi
85  large:
86    limits:
87      cpu: 400m
88      memory: 1Gi
89    requests:
90      cpu: 40m
91      memory: 500Mi
92  unlimited: {}