blob: c391369db62941b3d9513de2bf7b781f02d6f87f [file] [log] [blame]
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +00001# Copyright © 2017 Amdocs, Bell Canada
ChrisCec86a532020-03-19 15:53:31 -05002# Modifications © 2020 AT&T
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +00003#
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
dsingh.27864a34bf2018-09-21 05:11:00 -040016flavor: small
ChrisCec86a532020-03-19 15:53:31 -050017
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000018#################################################################
19# Application configuration defaults.
20#################################################################
21# application image
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020022replicaCount: 1
23
24binary: cm
25
26sequence_order:
27 - service
28 - locate
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000029
30nodeSelector: {}
31
32affinity: {}
33
34# probe configuration parameters
35liveness:
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020036 initialDelaySeconds: 30
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
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020041 port: api
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000042
43readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -050044 initialDelaySeconds: 5
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000045 periodSeconds: 10
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020046 port: api
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000047
48service:
49 name: aaf-cm
50 type: ClusterIP
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020051 ports:
52 - name: api
53 protocol: http
54 port: 8150
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000055
56ingress:
57 enabled: false
Lucjan Bryndza72b12152019-11-27 10:28:28 +000058 service:
59 - baseaddr: "aafcm"
60 name: "aaf-cm"
61 port: 8150
62 config:
Sylvain Desbureauxcfc90412020-05-06 15:17:55 +020063 ssl: "redirect"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000064
dsingh.27864a34bf2018-09-21 05:11:00 -040065# Configure resource requests and limits
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010066resources:
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020067 small:
68 limits:
69 cpu: 400m
70 memory: 300Mi
71 requests:
72 cpu: 1m
73 memory: 200Mi
74 large:
75 limits:
76 cpu: 400m
77 memory: 1Gi
78 requests:
79 cpu: 40m
80 memory: 600Mi
81 unlimited: {}