blob: 0a3e4d432b7f175d7b2fda1ac61925966d4fa9ba [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
Sylvain Desbureaux0de302a2020-06-05 15:19:22 +020018 persistence:
19 enabled: true
20 # Standard OOM
21 pullPolicy: "Always"
Sylvain Desbureaux0de302a2020-06-05 15:19:22 +020022
23 aaf:
Sylvain Desbureaux0dfa3872020-11-21 21:29:17 +010024 image: onap/aaf/aaf_core:2.1.23
Sylvain Desbureaux0de302a2020-06-05 15:19:22 +020025 config:
26 image: onap/aaf/aaf_config:2.1.23
27
28
dsingh.27864a34bf2018-09-21 05:11:00 -040029flavor: small
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000030#################################################################
31# Application configuration defaults.
32#################################################################
33# application image
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020034replicaCount: 1
35
36binary: locate
37
38sequence_order:
39 - service
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000040
41nodeSelector: {}
42
43affinity: {}
44
45# probe configuration parameters
46liveness:
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020047 initialDelaySeconds: 30
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000048 periodSeconds: 10
49 # necessary to disable liveness probe when setting breakpoints
50 # in debugger so K8s doesn't restart unresponsive container
51 enabled: true
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020052 port: api
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000053
54readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050055 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000056 periodSeconds: 10
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020057 port: api
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000058
59service:
60 name: aaf-locate
61 type: ClusterIP
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020062 ports:
63 - name: api
64 protocol: http
65 port: 8095
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000066
67ingress:
68 enabled: false
Lucjan Bryndza72b12152019-11-27 10:28:28 +000069 service:
70 - baseaddr: "aaflocate"
71 name: "aaf-locate"
72 port: 8095
73 config:
Sylvain Desbureauxcfc90412020-05-06 15:17:55 +020074 ssl: "redirect"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000075
dsingh.27864a34bf2018-09-21 05:11:00 -040076# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010077resources:
Sylvain Desbureaux4aff7f02020-05-14 13:21:06 +020078 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: {}