vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 1 | # 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 Elliott | 3e7dc64 | 2018-02-12 15:33:55 -0500 | [diff] [blame] | 15 | ################################################################# |
| 16 | # Global configuration default values that can be inherited by |
| 17 | # all subcharts. |
| 18 | ################################################################# |
| 19 | global: |
| 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 |
BorislavG | a05e37c | 2018-03-18 12:56:47 +0000 | [diff] [blame] | 30 | readinessImage: readiness-check:1.1.0 |
Mike Elliott | 3e7dc64 | 2018-02-12 15:33:55 -0500 | [diff] [blame] | 31 | |
| 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 |
BorislavG | a05e37c | 2018-03-18 12:56:47 +0000 | [diff] [blame] | 45 | debugEnabled: true |