blob: befbdc191d29b60b8132c3690fb41e5a5ddf15e6 [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 +000022
23nodeSelector: {}
24
25affinity: {}
26
27# probe configuration parameters
28liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050029 initialDelaySeconds: 120
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000030 periodSeconds: 10
31 # necessary to disable liveness probe when setting breakpoints
32 # in debugger so K8s doesn't restart unresponsive container
33 enabled: true
34
35readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050036 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000037 periodSeconds: 10
38
39service:
40 name: aaf-cm
41 type: ClusterIP
42 portName: aaf-cm
43 #targetPort
44 internalPort: 8150
45 #port
46 externalPort: 8150
47
48ingress:
49 enabled: false
Lucjan Bryndza72b12152019-11-27 10:28:28 +000050 service:
51 - baseaddr: "aafcm"
52 name: "aaf-cm"
53 port: 8150
54 config:
55 ssl: "none"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000056
dsingh.27864a34bf2018-09-21 05:11:00 -040057# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010058resources:
59 small:
60 limits:
Sylvain Desbureauxdaee54b2020-02-12 17:41:18 +010061 cpu: 400m
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010062 memory: 300Mi
63 requests:
64 cpu: 1m
65 memory: 200Mi
66 large:
67 limits:
68 cpu: 400m
69 memory: 1Gi
70 requests:
71 cpu: 40m
72 memory: 600Mi
73 unlimited: {}