blob: 7bcf10dabbdc707df022b5edbf8d90ab21c8de9c [file] [log] [blame]
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +00001# Copyright © 2017 Amdocs, Bell Canada
Sylvain Desbureaux0de302a2020-06-05 15:19:22 +02002# Modifications © 2020 AT&T, Orange
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +00003#
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
Sylvain Desbureaux0de302a2020-06-05 15:19:22 +020016global:
17 nodePortPrefix: 302
18 # Readiness image
19 readinessRepository: oomk8s
20 readinessImage: readiness-check:2.0.2
21 # Ubuntu Init image
22 ubuntuInitRepository: registry.hub.docker.com
23 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
24 # Logging image
25 loggingRepository: docker.elastic.co
26 loggingImage: beats/filebeat:5.5.0
27 # BusyBox image
28 busyboxRepository: registry.hub.docker.com
29 busyboxImage: library/busybox:1.31
30 persistence:
31 enabled: true
32 # Standard OOM
33 pullPolicy: "Always"
34 repository: "nexus3.onap.org:10001"
35
36 aaf:
37 config:
38 image: onap/aaf/aaf_config:2.1.23
39
40
dsingh.27864a34bf2018-09-21 05:11:00 -040041flavor: small
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000042#################################################################
43# Application configuration defaults.
44#################################################################
45# application image
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020046replicaCount: 1
47
48binary: locate
49
50sequence_order:
51 - service
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000052
53nodeSelector: {}
54
55affinity: {}
56
57# probe configuration parameters
58liveness:
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020059 initialDelaySeconds: 30
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000060 periodSeconds: 10
61 # necessary to disable liveness probe when setting breakpoints
62 # in debugger so K8s doesn't restart unresponsive container
63 enabled: true
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020064 port: api
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000065
66readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050067 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000068 periodSeconds: 10
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020069 port: api
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000070
71service:
72 name: aaf-locate
73 type: ClusterIP
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020074 ports:
75 - name: api
76 protocol: http
77 port: 8095
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000078
79ingress:
80 enabled: false
Lucjan Bryndza72b12152019-11-27 10:28:28 +000081 service:
82 - baseaddr: "aaflocate"
83 name: "aaf-locate"
84 port: 8095
85 config:
Sylvain Desbureauxcfc90412020-05-06 15:17:55 +020086 ssl: "redirect"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000087
dsingh.27864a34bf2018-09-21 05:11:00 -040088# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010089resources:
Sylvain Desbureaux4aff7f02020-05-14 13:21:06 +020090 small:
91 limits:
92 cpu: 500m
93 memory: 320Mi
94 requests:
95 cpu: 1m
96 memory: 210Mi
97 large:
98 limits:
99 cpu: 400m
100 memory: 1Gi
101 requests:
102 cpu: 40m
103 memory: 500Mi
104 unlimited: {}