blob: a0e9fe9bae410c81e8d14ed2b98af9ac1c892700 [file] [log] [blame]
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +00001# Copyright © 2017 Amdocs, Bell Canada
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +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
dsingh.27864a34bf2018-09-21 05:11:00 -040028flavor: small
ChrisCec86a532020-03-19 15:53:31 -050029
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000030#################################################################
31# Application configuration defaults.
32#################################################################
33# application image
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000034pullPolicy: Always
35
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020036replicaCount: 1
37
38binary: fs
39
40sequence_order:
41 - service
42 - locate
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000043
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000044nodeSelector: {}
45
46affinity: {}
47
48# probe configuration parameters
49liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050050 initialDelaySeconds: 120
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000051 periodSeconds: 10
52 # necessary to disable liveness probe when setting breakpoints
53 # in debugger so K8s doesn't restart unresponsive container
54 enabled: true
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020055 port: api
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000056
57readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050058 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000059 periodSeconds: 10
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020060 port: api
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000061
62service:
63 name: aaf-fs
64 type: ClusterIP
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020065 ports:
66 - name: api
67 port: 8096
68 protocol: http
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000069
70ingress:
71 enabled: false
Lucjan Bryndza72b12152019-11-27 10:28:28 +000072 service:
Andreas Geissler51900a92022-08-03 13:10:35 +020073 - baseaddr: "aaf-fs-api"
Lucjan Bryndza72b12152019-11-27 10:28:28 +000074 name: "aaf-fs"
75 port: 8096
76 config:
77 ssl: "none"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000078
dsingh.27864a34bf2018-09-21 05:11:00 -040079# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010080resources:
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020081 small:
82 limits:
83 cpu: 200m
84 memory: 110Mi
85 requests:
86 cpu: 1m
87 memory: 80Mi
88 large:
89 limits:
90 cpu: 500m
91 memory: 700Mi
92 requests:
93 cpu: 100m
94 memory: 400Mi
95 unlimited: {}