blob: d1a35a744c0a9b064e0eceb0268977eddbf3874c [file] [log] [blame]
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +00001# Copyright © 2017 Amdocs, Bell Canada
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000020 readinessRepository: oomk8s
Gary Wubf4b4d82018-05-11 13:26:30 -070021 readinessImage: readiness-check:2.0.0
dsingh.27864a34bf2018-09-21 05:11:00 -040022flavor: small
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000023#################################################################
24# Application configuration defaults.
25#################################################################
26# application image
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000027pullPolicy: Always
28
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000029
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000030nodeSelector: {}
31
32affinity: {}
33
34# probe configuration parameters
35liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050036 initialDelaySeconds: 120
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000037 periodSeconds: 10
38 # necessary to disable liveness probe when setting breakpoints
39 # in debugger so K8s doesn't restart unresponsive container
40 enabled: true
41
42readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050043 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000044 periodSeconds: 10
45
46service:
47 name: aaf-fs
48 type: ClusterIP
49 portName: aaf-fs
50 #targetPort
51 internalPort: 8096
52 #port
53 externalPort: 8096
54
55ingress:
56 enabled: false
Lucjan Bryndza72b12152019-11-27 10:28:28 +000057 service:
58 - baseaddr: "aaffs"
59 name: "aaf-fs"
60 port: 8096
61 config:
62 ssl: "none"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000063
dsingh.27864a34bf2018-09-21 05:11:00 -040064# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010065resources:
66 small:
67 limits:
68 cpu: 200m
69 memory: 110Mi
70 requests:
71 cpu: 1m
72 memory: 80Mi
73 large:
74 limits:
75 cpu: 500m
76 memory: 700Mi
77 requests:
78 cpu: 100m
79 memory: 400Mi
80 unlimited: {}