blob: 6ddc07278bb2c1e3813842575e903406b00ac446 [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
dsingh.27864a34bf2018-09-21 05:11:00 -040016flavor: small
ChrisCec86a532020-03-19 15:53:31 -050017
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000018#################################################################
19# Application configuration defaults.
20#################################################################
21# application image
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000022pullPolicy: Always
23
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020024replicaCount: 1
25
26binary: fs
27
28sequence_order:
29 - service
30 - locate
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000031
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000032nodeSelector: {}
33
34affinity: {}
35
36# probe configuration parameters
37liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050038 initialDelaySeconds: 120
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000039 periodSeconds: 10
40 # necessary to disable liveness probe when setting breakpoints
41 # in debugger so K8s doesn't restart unresponsive container
42 enabled: true
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020043 port: api
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000044
45readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050046 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000047 periodSeconds: 10
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020048 port: api
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000049
50service:
51 name: aaf-fs
52 type: ClusterIP
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020053 ports:
54 - name: api
55 port: 8096
56 protocol: http
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000057
58ingress:
59 enabled: false
Lucjan Bryndza72b12152019-11-27 10:28:28 +000060 service:
61 - baseaddr: "aaffs"
62 name: "aaf-fs"
63 port: 8096
64 config:
65 ssl: "none"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000066
dsingh.27864a34bf2018-09-21 05:11:00 -040067# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010068resources:
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020069 small:
70 limits:
71 cpu: 200m
72 memory: 110Mi
73 requests:
74 cpu: 1m
75 memory: 80Mi
76 large:
77 limits:
78 cpu: 500m
79 memory: 700Mi
80 requests:
81 cpu: 100m
82 memory: 400Mi
83 unlimited: {}