blob: 60b7dd4086ab594f8ebc2c26e7f8ef64430abbd2 [file] [log] [blame]
Michael Arrastia6c3ba492018-03-29 14:53:40 +01001# Copyright © 2018 Amdocs, AT&T
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00002# Modifications Copyright © 2018 Bell Canada
Michael Arrastia6c3ba492018-03-29 14:53:40 +01003#
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:
Mahendra Raghuwanshid06d7822019-03-15 06:42:07 +000020 readinessImage: readiness-check:2.0.2
Michael Arrastia6c3ba492018-03-29 14:53:40 +010021 loggingImage: beats/filebeat:5.5.0
22
23#################################################################
24# Application configuration defaults.
25#################################################################
26
27# application image
Lee, Tian (tl5884)5ea65d52019-02-12 15:43:01 +000028image: onap/babel:1.4-STAGING-latest
Michael Arrastia6c3ba492018-03-29 14:53:40 +010029
rajeshkalai9fcfbce2018-09-20 06:36:28 -040030flavor: small
31
Michael Arrastia6c3ba492018-03-29 14:53:40 +010032# application configuration
33config:
Jimmy Forsythb4b09482018-05-01 16:03:43 -040034 keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
35 keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
Michael Arrastia6c3ba492018-03-29 14:53:40 +010036
37# default number of instances
38replicaCount: 1
39
40nodeSelector: {}
41
42affinity: {}
43
44# probe configuration parameters
45liveness:
46 initialDelaySeconds: 10
47 periodSeconds: 10
48 # necessary to disable liveness probe when setting breakpoints
49 # in debugger so K8s doesn't restart unresponsive container
50 enabled: false
51
52readiness:
53 initialDelaySeconds: 10
54 periodSeconds: 10
55
56service:
57 type: NodePort
BorislavG1ffbd992018-04-24 07:56:27 +000058 portName: babel
BorislavG2d4426e2018-05-22 11:31:39 +000059 externalPort: 9516
Michael Arrastia6c3ba492018-03-29 14:53:40 +010060 internalPort: 9516
61 nodePort: 79
62
63ingress:
64 enabled: false
65
rajeshkalai9fcfbce2018-09-20 06:36:28 -040066resources:
67 small:
68 limits:
69 cpu: 2
70 memory: 4Gi
71 requests:
jimmy297f59b2018-12-06 15:05:48 -050072 cpu: 0.5
73 memory: 1Gi
rajeshkalai9fcfbce2018-09-20 06:36:28 -040074 large:
75 limits:
76 cpu: 4
77 memory: 8Gi
78 requests:
jimmy297f59b2018-12-06 15:05:48 -050079 cpu: 2
80 memory: 2Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +000081 unlimited: {}