[DCAEMOD] Uses new tpls for repos / images
[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   # Readiness image
19   readinessImage: onap/oom/readiness:3.0.1
20   # Ubuntu Init image
21   ubuntuInitRepository: docker.io
22   ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
23   # Logging image
24   loggingRepository: docker.elastic.co
25   loggingImage: beats/filebeat:5.5.0
26   # BusyBox image
27   busyboxRepository: docker.io
28   busyboxImage: library/busybox:1.31
29   persistence:
30     enabled: true
31   # Standard OOM
32   pullPolicy: "Always"
33   repository: "nexus3.onap.org:10001"
34
35   aaf:
36     config:
37       image: onap/aaf/aaf_config:2.1.23
38
39
40 flavor: small
41
42 #################################################################
43 # Application configuration defaults.
44 #################################################################
45 # application image
46 replicaCount: 1
47
48 binary: cm
49
50 sequence_order:
51   - service
52   - locate
53
54 nodeSelector: {}
55
56 affinity: {}
57
58 # probe configuration parameters
59 liveness:
60   initialDelaySeconds: 30
61   periodSeconds: 10
62   # necessary to disable liveness probe when setting breakpoints
63   # in debugger so K8s doesn't restart unresponsive container
64   enabled: true
65   port: api
66
67 readiness:
68   initialDelaySeconds: 5
69   periodSeconds: 10
70   port: api
71
72 service:
73   name: aaf-cm
74   type: ClusterIP
75   ports:
76     - name: api
77       protocol: http
78       port: 8150
79
80 ingress:
81   enabled: false
82   service:
83     - baseaddr: "aafcm"
84       name: "aaf-cm"
85       port: 8150
86   config:
87     ssl: "redirect"
88
89 # Configure resource requests and limits
90 resources:
91   small:
92     limits:
93       cpu: 400m
94       memory: 300Mi
95     requests:
96       cpu: 1m
97       memory: 200Mi
98   large:
99     limits:
100       cpu: 400m
101       memory: 1Gi
102     requests:
103       cpu: 40m
104       memory: 600Mi
105   unlimited: {}