blob: c8ded9a5dd53b1541667c1d56c78cfa99aa706e8 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
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
Mike Elliott3e7dc642018-02-12 15:33:55 -050015#################################################################
16# Global configuration default values that can be inherited by
17# all subcharts.
18#################################################################
19global:
20 # Change to an unused port prefix range to prevent port conflicts
21 # with other instances running within the same k8s cluster
22 nodePortPrefix: 302
23
24 # image repositories
25 repository: nexus3.onap.org:10001
26 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
27
28 # readiness check
29 readinessRepository: oomk8s
BorislavGa05e37c2018-03-18 12:56:47 +000030 readinessImage: readiness-check:1.1.0
Mike Elliott3e7dc642018-02-12 15:33:55 -050031
32 # logging agent
33 loggingRepository: docker.elastic.co
34 loggingImage: beats/filebeat:5.5.0
35
36 # image pull policy
37 pullPolicy: Always
38
39 # default mount path root directory referenced
40 # by persistent volumes and log files
41 persistence:
42 mountPath: /dockerdata-nfs
43
44 # flag to enable debugging - application support required
BorislavGa05e37c2018-03-18 12:56:47 +000045 debugEnabled: true