default storageclass and nfs provisioner
[oom.git] / kubernetes / common / nfs-provisioner / values.yaml
1 # Copyright © 2019 Amdocs, Bell Canada\r
2 #\r
3 # Licensed under the Apache License, Version 2.0 (the "License");\r
4 # you may not use this file except in compliance with the License.\r
5 # You may obtain a copy of the License at\r
6 #\r
7 #       http://www.apache.org/licenses/LICENSE-2.0\r
8 #\r
9 # Unless required by applicable law or agreed to in writing, software\r
10 # distributed under the License is distributed on an "AS IS" BASIS,\r
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
12 # See the License for the specific language governing permissions and\r
13 # limitations under the License.\r
14 \r
15 #################################################################\r
16 # Global configuration defaults.\r
17 #################################################################\r
18 global:\r
19   persistence:\r
20     mountPath: /dockerdata-nfs\r
21 \r
22 #################################################################\r
23 # Application configuration defaults.\r
24 #################################################################\r
25 \r
26 dockerHubRepository: registry.hub.docker.com\r
27 pullPolicy: Always\r
28 \r
29 # default number of instances\r
30 \r
31 nodeSelector: {}\r
32 \r
33 affinity: {}\r
34 \r
35 service:\r
36   name: nfs-provisioner\r
37   nfsPort: 2049\r
38   mountdPort: 20048\r
39   rpcbindPort: 111\r
40   rpcbindUdpPort: 111\r
41 \r
42 ## Persist data to a persitent volume\r
43 persistence:\r
44   enabled: true\r
45   mountPath: /dockerdata-nfs\r
46 \r
47 ## NFS provisioner image properties\r
48 nfsprovisionerRepository: quay.io\r
49 nfsprovisionerImage: kubernetes_incubator/nfs-provisioner:v1.0.8\r
50 \r