blob: 3068f14ec9eb91d6f8c59a3e4592f66c7849536d [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
59
dsingh.27864a34bf2018-09-21 05:11:00 -040060# Configure resource requests and limits
Instrumentalcc3a0bd2019-05-01 14:18:49 -050061resources: {}
62# Allow END users to do this, if they want. Detrimental to Test services
63#resources:
64# small:
65# limits:
66# cpu: 100m
67# memory: 500Mi
68# requests:
69# cpu: 10m
70# memory: 200Mi
71# large:
72# limits:
73# cpu: 200m
74# memory: 1Gi
75# requests:
76# cpu: 100m
77# memory: 500Mi
78# unlimited: {}