blob: 687219d680f83fb30277e63d7da500418b5f2c79 [file] [log] [blame]
sushil masalacba0492019-03-25 18:32:16 +05301# Copyright © 2019 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
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 persistence:
20 mountPath: /dockerdata-nfs
21
22#################################################################
23# Application configuration defaults.
24#################################################################
25
26dockerHubRepository: registry.hub.docker.com
27pullPolicy: Always
28
29# default number of instances
30
31nodeSelector: {}
32
33affinity: {}
34
35service:
36 name: nfs-provisioner
37 nfsPort: 2049
38 mountdPort: 20048
39 rpcbindPort: 111
40 rpcbindUdpPort: 111
41
42## Persist data to a persitent volume
43persistence:
44 enabled: true
45 mountPath: /dockerdata-nfs
46
47## NFS provisioner image properties
48nfsprovisionerRepository: quay.io
49nfsprovisionerImage: kubernetes_incubator/nfs-provisioner:v1.0.8
50