blob: 4b12bd0deb1d662ee3fbffa0f4b86e278ef825cc [file] [log] [blame]
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +00001# Copyright © 2017 Amdocs, Bell Canada
ChrisCec86a532020-03-19 15:53:31 -05002# Modifications © 2020 AT&T
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
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000024
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000025nodeSelector: {}
26
27affinity: {}
28
29# probe configuration parameters
30liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050031 initialDelaySeconds: 120
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000032 periodSeconds: 10
33 # necessary to disable liveness probe when setting breakpoints
34 # in debugger so K8s doesn't restart unresponsive container
35 enabled: true
36
37readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050038 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000039 periodSeconds: 10
40
41service:
42 name: aaf-fs
43 type: ClusterIP
44 portName: aaf-fs
45 #targetPort
46 internalPort: 8096
47 #port
48 externalPort: 8096
49
50ingress:
51 enabled: false
Lucjan Bryndza72b12152019-11-27 10:28:28 +000052 service:
53 - baseaddr: "aaffs"
54 name: "aaf-fs"
55 port: 8096
56 config:
57 ssl: "none"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000058
dsingh.27864a34bf2018-09-21 05:11:00 -040059# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010060resources:
61 small:
62 limits:
63 cpu: 200m
64 memory: 110Mi
65 requests:
66 cpu: 1m
67 memory: 80Mi
68 large:
69 limits:
70 cpu: 500m
71 memory: 700Mi
72 requests:
73 cpu: 100m
74 memory: 400Mi
75 unlimited: {}