blob: 7ba1c6bc038990d72c7b47185151a82530d2dcd6 [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:
BorislavG3d6f9372018-04-15 11:55:39 +000020 readinessImage: readiness-check:2.0.0
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
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040028image: onap/babel:1.3-STAGING-latest
Michael Arrastia6c3ba492018-03-29 14:53:40 +010029
30# application configuration
31config:
Jimmy Forsythb4b09482018-05-01 16:03:43 -040032 keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
33 keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
Michael Arrastia6c3ba492018-03-29 14:53:40 +010034
35# default number of instances
36replicaCount: 1
37
38nodeSelector: {}
39
40affinity: {}
41
42# probe configuration parameters
43liveness:
44 initialDelaySeconds: 10
45 periodSeconds: 10
46 # necessary to disable liveness probe when setting breakpoints
47 # in debugger so K8s doesn't restart unresponsive container
48 enabled: false
49
50readiness:
51 initialDelaySeconds: 10
52 periodSeconds: 10
53
54service:
55 type: NodePort
BorislavG1ffbd992018-04-24 07:56:27 +000056 portName: babel
BorislavG2d4426e2018-05-22 11:31:39 +000057 externalPort: 9516
Michael Arrastia6c3ba492018-03-29 14:53:40 +010058 internalPort: 9516
59 nodePort: 79
60
61ingress:
62 enabled: false
63
64resources: {}