blob: ef00a464f4419e5617a64ce5b5200bc75d554536 [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
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 +000027nodeSelector: {}
28
29affinity: {}
30
31# probe configuration parameters
32liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050033 initialDelaySeconds: 120
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000034 periodSeconds: 10
35 # necessary to disable liveness probe when setting breakpoints
36 # in debugger so K8s doesn't restart unresponsive container
37 enabled: true
38
39readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050040 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000041 periodSeconds: 10
42
43service:
44 name: aaf-oauth
45 type: ClusterIP
46 portName: aaf-oauth
47 #targetPort
48 internalPort: 8140
49 #port
50 externalPort: 8140
51
52ingress:
53 enabled: false
Lucjan Bryndza72b12152019-11-27 10:28:28 +000054 service:
55 - baseaddr: "aafoauth"
56 name: "aaf-oauth"
57 port: 8140
58 config:
59 ssl: "none"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000060
dsingh.27864a34bf2018-09-21 05:11:00 -040061# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010062resources:
63 small:
64 limits:
65 cpu: 40m
66 memory: 320Mi
67 requests:
68 cpu: 1m
69 memory: 210Mi
70 large:
71 limits:
72 cpu: 400m
73 memory: 600Mi
74 requests:
75 cpu: 40m
76 memory: 200Mi
77 unlimited: {}