blob: 12ced6fcbe331dde4b53c32061a764e1b5189eee [file] [log] [blame]
Daniel Silverthornb5d7ad82018-03-08 10:02:21 -05001# Copyright © 2018 Amdocs, AT&T
toshrajbhardwaj84d73b12018-08-06 07:35:14 +00002# Modifications Copyright © 2018 Bell Canada
Daniel Silverthornb5d7ad82018-03-08 10:02:21 -05003#
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:
BorislavGf2b49662018-04-15 11:55:39 +000020 readinessImage: readiness-check:2.0.0
Daniel Silverthornb5d7ad82018-03-08 10:02:21 -050021 loggingImage: beats/filebeat:5.5.0
22
23#################################################################
24# Application configuration defaults.
25#################################################################
26
27# application image
Jimmy Forsyth60677452018-05-30 17:40:40 -040028image: onap/champ:1.2.3
Daniel Silverthorn31023262018-03-28 19:18:19 +000029
30# application configuration
31config:
32 keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
33 keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
Daniel Silverthornb5d7ad82018-03-08 10:02:21 -050034
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
BorislavGdd207052018-05-22 11:31:39 +000056 portName: aai-champ
Daniel Silverthornb5d7ad82018-03-08 10:02:21 -050057 internalPort: 9522
58 nodePort: 78
59
60ingress:
61 enabled: false
62
63resources: {}