blob: a6f3c5dc4ee8601eef44cae0933caeeede219030 [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
ChrisCec86a532020-03-19 15:53:31 -050030
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000031#################################################################
32# Application configuration defaults.
33#################################################################
34# application image
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000035
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020036replicaCount: 1
37
38binary: service
39
40sequence_order:
41 - cass
42
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000043nodeSelector: {}
44
45affinity: {}
46
47# probe configuration parameters
48liveness:
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020049 initialDelaySeconds: 30
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000050 periodSeconds: 10
51 # necessary to disable liveness probe when setting breakpoints
52 # in debugger so K8s doesn't restart unresponsive container
53 enabled: true
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020054 port: api
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000055
56readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050057 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000058 periodSeconds: 10
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020059 port: api
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000060
61service:
62 name: aaf-service
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020063 type: ClusterIP
64 ports:
65 - name: api
66 port: 8100
67 protocol: http
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000068
69ingress:
70 enabled: false
Lucjan Bryndza72b12152019-11-27 10:28:28 +000071 service:
Andreas Geissler51900a92022-08-03 13:10:35 +020072 - baseaddr: "aaf-service-api"
Lucjan Bryndza72b12152019-11-27 10:28:28 +000073 name: "aaf-service"
74 port: 8100
75 config:
Sylvain Desbureauxcfc90412020-05-06 15:17:55 +020076 ssl: "redirect"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000077
dsingh.27864a34bf2018-09-21 05:11:00 -040078# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010079resources:
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020080 small:
81 limits:
82 cpu: 250m
83 memory: 360Mi
84 requests:
85 cpu: 10m
86 memory: 250Mi
87 large:
88 limits:
89 cpu: 400m
90 memory: 1Gi
91 requests:
92 cpu: 40m
93 memory: 300Mi
94 unlimited: {}