blob: 2083f1af3df79c584a29e27720a6fccfd8b8d890 [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
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000017#################################################################
18# Application configuration defaults.
19#################################################################
20# application image
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000021
22nodeSelector: {}
23
24affinity: {}
25
26# probe configuration parameters
27liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050028 initialDelaySeconds: 120
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000029 periodSeconds: 10
30 # necessary to disable liveness probe when setting breakpoints
31 # in debugger so K8s doesn't restart unresponsive container
32 enabled: true
33
34readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050035 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000036 periodSeconds: 10
37
38service:
39 name: aaf-locate
40 type: ClusterIP
41 portName: aaf-locate
42 #targetPort
43 internalPort: 8095
44 #port
Instrumentalcc3a0bd2019-05-01 14:18:49 -050045 externalPort: 31111
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000046
47ingress:
48 enabled: false
Lucjan Bryndza72b12152019-11-27 10:28:28 +000049 service:
50 - baseaddr: "aaflocate"
51 name: "aaf-locate"
52 port: 8095
53 config:
54 ssl: "none"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000055
dsingh.27864a34bf2018-09-21 05:11:00 -040056# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010057resources:
58 small:
59 limits:
Sylvain Desbureauxdaee54b2020-02-12 17:41:18 +010060 cpu: 100m
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010061 memory: 320Mi
62 requests:
63 cpu: 1m
64 memory: 210Mi
65 large:
66 limits:
67 cpu: 400m
68 memory: 1Gi
69 requests:
70 cpu: 40m
71 memory: 500Mi
72 unlimited: {}