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