blob: a6033220a53d05aeabea07954e00d44cf7448e47 [file] [log] [blame]
Instrumental378109d2018-10-16 20:40:41 -05001
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +00002# Copyright © 2017 Amdocs, Bell Canada
3#
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
16#################################################################
17# Global configuration defaults.
18#################################################################
19global:
20 nodePortPrefix: 302
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000021 readinessRepository: oomk8s
Gary Wubf4b4d82018-05-11 13:26:30 -070022 readinessImage: readiness-check:2.0.0
dsingh.27864a34bf2018-09-21 05:11:00 -040023flavor: small
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000024#################################################################
25# Application configuration defaults.
26#################################################################
27# application image
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000028pullPolicy: Always
29
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000030
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000031nodeSelector: {}
32
33affinity: {}
34
35# probe configuration parameters
36liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050037 initialDelaySeconds: 120
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000038 periodSeconds: 10
39 # necessary to disable liveness probe when setting breakpoints
40 # in debugger so K8s doesn't restart unresponsive container
41 enabled: true
42
43readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050044 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000045 periodSeconds: 10
46
47service:
48 name: aaf-gui
49 type: NodePort
50 portName: aaf-gui
51 #targetPort
52 internalPort: 8200
53 #port
54 externalPort: 8200
55 nodePort: 51
56
57ingress:
58 enabled: false
Lucjan Bryndza72b12152019-11-27 10:28:28 +000059 service:
60 - baseaddr: "aafgui"
61 name: "aaf-gui"
62 port: 8200
63 config:
64 ssl: "none"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000065
dsingh.27864a34bf2018-09-21 05:11:00 -040066# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010067resources:
68 small:
69 limits:
Sylvain Desbureaux4f313bc2020-03-04 14:20:22 +010070 cpu: 200m
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010071 memory: 280Mi
72 requests:
73 cpu: 1m
74 memory: 170Mi
75 large:
76 limits:
77 cpu: 200m
78 memory: 1Gi
79 requests:
80 cpu: 100m
81 memory: 500Mi
82 unlimited: {}