blob: 78afd419ca9f8bfe8200d26ae3d6eeedc9dbabba [file] [log] [blame]
Daniel Silverthorn48f10702018-03-08 10:02:21 -05001# Copyright © 2018 Amdocs, AT&T
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:
BorislavG3d6f9372018-04-15 11:55:39 +000019 readinessImage: readiness-check:2.0.0
Daniel Silverthorn48f10702018-03-08 10:02:21 -050020 loggingImage: beats/filebeat:5.5.0
21
22#################################################################
23# Application configuration defaults.
24#################################################################
25
26# application image
Jimmy Forsyth594c2fd2018-05-30 17:40:40 -040027image: onap/champ:1.2.3
Daniel Silverthorn82cee4d2018-03-28 19:18:19 +000028
29# application configuration
30config:
31 keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
32 keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
Daniel Silverthorn48f10702018-03-08 10:02:21 -050033
34# default number of instances
35replicaCount: 1
36
37nodeSelector: {}
38
39affinity: {}
40
41# probe configuration parameters
42liveness:
43 initialDelaySeconds: 10
44 periodSeconds: 10
45 # necessary to disable liveness probe when setting breakpoints
46 # in debugger so K8s doesn't restart unresponsive container
47 enabled: false
48
49readiness:
50 initialDelaySeconds: 10
51 periodSeconds: 10
52
53service:
54 type: NodePort
BorislavG2d4426e2018-05-22 11:31:39 +000055 portName: aai-champ
Daniel Silverthorn48f10702018-03-08 10:02:21 -050056 internalPort: 9522
57 nodePort: 78
58
59ingress:
60 enabled: false
61
62resources: {}