blob: c3ed9e1a649941a55598023e3a8096242c03118f [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
Instrumentalcc3a0bd2019-05-01 14:18:49 -050021 readinessImage: readiness-check:2.0.2
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000022flavor: small
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000023#################################################################
24# Application configuration defaults.
25#################################################################
26# application image
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000027
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000028
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000029nodeSelector: {}
30
31affinity: {}
32
33# probe configuration parameters
34liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050035 initialDelaySeconds: 120
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000036 periodSeconds: 10
37 # necessary to disable liveness probe when setting breakpoints
38 # in debugger so K8s doesn't restart unresponsive container
39 enabled: true
40
41readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050042 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000043 periodSeconds: 10
44
45service:
46 name: aaf-hello
47 type: ClusterIP
48 portName: aaf-hello
49 #targetPort
50 internalPort: 8130
51 #port
52 externalPort: 8130
53
54ingress:
55 enabled: false
56
dsingh.27864a34bf2018-09-21 05:11:00 -040057# Configure resource requests and limits
Instrumentalcc3a0bd2019-05-01 14:18:49 -050058resources: {}
59# Allow END users to do this, if they want. Detrimental to Test services
60#resources:
61# small:
62# limits:
63# cpu: 200m
64# memory: 500Mi
65# requests:
66# cpu: 10m
67# memory: 200Mi
68# large:
69# limits:
70# cpu: 400m
71# memory: 1Gi
72# requests:
73# cpu: 20m
74# memory: 500Mi
75# unlimited: {}