blob: 8794afe0ce8b314f14cd410d5d81e5e7055d0278 [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
21 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 +000027
28nodeSelector: {}
29
30affinity: {}
31
32# probe configuration parameters
33liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050034 initialDelaySeconds: 120
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000035 periodSeconds: 10
36 # necessary to disable liveness probe when setting breakpoints
37 # in debugger so K8s doesn't restart unresponsive container
38 enabled: true
39
40readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050041 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000042 periodSeconds: 10
43
44service:
45 name: aaf-service
46 type: NodePort
47 portName: aaf-service
48 #targetPort
49 internalPort: 8100
50 #port
Instrumentalcc3a0bd2019-05-01 14:18:49 -050051 externalPort: 31110
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000052
53ingress:
54 enabled: false
55
dsingh.27864a34bf2018-09-21 05:11:00 -040056# Configure resource requests and limits
Instrumentalcc3a0bd2019-05-01 14:18:49 -050057resources: {}
58# Allow END users to do this, if they want. Detrimental to Test services
59#resources:
60# small:
61# limits:
62# cpu: 200m
63# memory: 800Mi
64# requests:
65# cpu: 20m
66# memory: 300Mi
67# large:
68# limits:
69# cpu: 400m
70# memory: 1Gi
71# requests:
72# cpu: 40m
73# memory: 300Mi
74# unlimited: {}