blob: bc013d07f7a8f23a3235ca46ad1617c203a7b738 [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 +000021pullPolicy: Always
22
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000023
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000024nodeSelector: {}
25
26affinity: {}
27
28# probe configuration parameters
29liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050030 initialDelaySeconds: 120
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000031 periodSeconds: 10
32 # necessary to disable liveness probe when setting breakpoints
33 # in debugger so K8s doesn't restart unresponsive container
34 enabled: true
35
36readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050037 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000038 periodSeconds: 10
39
40service:
41 name: aaf-gui
42 type: NodePort
43 portName: aaf-gui
44 #targetPort
45 internalPort: 8200
46 #port
47 externalPort: 8200
48 nodePort: 51
49
50ingress:
51 enabled: false
Lucjan Bryndza72b12152019-11-27 10:28:28 +000052 service:
53 - baseaddr: "aafgui"
54 name: "aaf-gui"
55 port: 8200
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:
Sylvain Desbureaux4f313bc2020-03-04 14:20:22 +010063 cpu: 200m
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010064 memory: 280Mi
65 requests:
66 cpu: 1m
67 memory: 170Mi
68 large:
69 limits:
70 cpu: 200m
71 memory: 1Gi
72 requests:
73 cpu: 100m
74 memory: 500Mi
75 unlimited: {}