[DCAEMOD] Uses new tpls for repos / images
[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   # 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 # Application configuration defaults.
43 #################################################################
44 # application image
45 replicaCount: 1
46
47 binary: locate
48
49 sequence_order:
50   - service
51
52 nodeSelector: {}
53
54 affinity: {}
55
56 # probe configuration parameters
57 liveness:
58   initialDelaySeconds: 30
59   periodSeconds: 10
60   # necessary to disable liveness probe when setting breakpoints
61   # in debugger so K8s doesn't restart unresponsive container
62   enabled: true
63   port: api
64
65 readiness:
66   initialDelaySeconds: 5
67   periodSeconds: 10
68   port: api
69
70 service:
71   name: aaf-locate
72   type: ClusterIP
73   ports:
74     - name: api
75       protocol: http
76       port: 8095
77
78 ingress:
79   enabled: false
80   service:
81     - baseaddr: "aaflocate"
82       name: "aaf-locate"
83       port: 8095
84   config:
85     ssl: "redirect"
86
87 # Configure resource requests and limits
88 resources:
89  small:
90    limits:
91      cpu: 500m
92      memory: 320Mi
93    requests:
94      cpu: 1m
95      memory: 210Mi
96  large:
97    limits:
98      cpu: 400m
99      memory: 1Gi
100    requests:
101      cpu: 40m
102      memory: 500Mi
103  unlimited: {}