blob: f418fd5b41d20d1bcbe3709ba9dbac163c12ca82 [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
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020023replicaCount: 1
24
25binary: gui
26
27sequence_order:
28 - service
29 - locate
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000030
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000031nodeSelector: {}
32
33affinity: {}
34
35# probe configuration parameters
36liveness:
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020037 initialDelaySeconds: 30
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
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020042 port: gui
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000043
44readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050045 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000046 periodSeconds: 10
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020047 port: gui
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000048
49service:
50 name: aaf-gui
51 type: NodePort
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020052 ports:
53 - name: gui
54 protocol: http
55 port: 8200
56 nodePort: 51
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000057
58ingress:
59 enabled: false
Lucjan Bryndza72b12152019-11-27 10:28:28 +000060 service:
61 - baseaddr: "aafgui"
62 name: "aaf-gui"
63 port: 8200
64 config:
Sylvain Desbureauxcfc90412020-05-06 15:17:55 +020065 ssl: "redirect"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000066
dsingh.27864a34bf2018-09-21 05:11:00 -040067# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010068resources:
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020069 small:
70 limits:
71 cpu: 200m
72 memory: 280Mi
73 requests:
74 cpu: 1m
75 memory: 170Mi
76 large:
77 limits:
78 cpu: 200m
79 memory: 1Gi
80 requests:
81 cpu: 100m
82 memory: 500Mi
83 unlimited: {}