storageClass provisioner for nfs and hostPath
Need help on how to configure the the provisioner attribute of a storageClass for NFS and hostPath.
For hostPath according to https://kubernetes.io/docs/concepts/storage/storage-classes/#local
provisioner: kubernetes.io/no-provisioner ?
For NFS the documentations says https://kubernetes.io/docs/concepts/storage/storage-classes/
"Each StorageClass has a provisioner that determines what volume plugin is used for provisioning PVs. This field must be specified."
But the table below doesn't show any value for NFS.
Besides under the table it says:
"For example, NFS doesn't provide an internal provisioner, but an external provisioner can be used."
So what is the provisioner for nfs storageClass?
Comments
-
Hi @ltosolini,
On the storage classes page referenced above, there is a section on Provisioners where you can find links to a few NFS provisioners on GitHub.
Regards,
-Chris0 -
Hello Chris,
I can not find such reference, would you kindly provide it....
BTW, I have implemented the lab exercise as follow using 'no-provisioner' and it works. Is it wrong?
Thanks,
Luca.apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
name: storageclass1
provisioner: kubernetes.io/no-provisioner
parameters:
allowVolumeExpansion: trueapiVersion: v1
kind: PersistentVolume
metadata:
name: pvvol-1
spec:
capacity:
storage: 1Gi
volumeMode: Filesystem
accessModes:
- ReadWriteMany
persistentVolumeReclaimPolicy: Retain
storageClassName: storageclass1
nfs:
path: /opt/sfw
server: 10.9.4.145apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: pvc-one
spec:
accessModes:
- ReadWriteMany
volumeMode: Filesystem
resources:
requests:
storage: 200Mi
storageClassName: storageclass1
ubuntu@wf-st-cctr1:~/8$0 -
Hi @ltosolini,
I realize that navigating through the documentation can be quite challenging.
I was referencing the same Storage Classes documentation page, found at https://kubernetes.io/docs/concepts/storage/storage-classes/, which you mentioned above.
On the Storage Classes documentation page, if you scroll down to the Provisioner section, right above the sentence you quoted in your post:
For example, NFS doesn't provide an internal provisioner, but an external provisioner can be used.
there is another sentence that reads:
Some external provisioners are listed under the repository kubernetes-sigs/sig-storage-lib-external-provisioner.
If you happen to click on the link kubernetes-sigs/sig-storage-lib-external-provisioner, you will be taken to GitHub where you may find information about a library used to write external provisioners together with a short list of NFS provisioners.
Regards,
-Chris0
Categories
- All Categories
- 177 LFX Mentorship
- 177 LFX Mentorship: Linux Kernel
- 750 Linux Foundation IT Professional Programs
- 373 Cloud Engineer IT Professional Program
- 169 Advanced Cloud Engineer IT Professional Program
- 74 DevOps IT Professional Program - Discontinued
- 4 DevOps & GitOps IT Professional Program
- 99 Cloud Native Developer IT Professional Program
- 7.6K Training Courses & Learning Paths
- 1 AI & ML Training
- 1 Blockchain & Decentralized Identity Training
- 4 Cloud & Containers Training
- 1 Cybersecurity Training
- 2 DevOps & Site-Reliability Training
- 1 Linux Kernel Development Training
- 1 Networking Training
- 2 Open Source Best Practice Training
- 1 System Administration Training
- 1 System Engineering Training
- 1 Web & Application Development Training
- 792 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 95 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 87 Storage
- 769 Linux Distributions
- 81 Debian
- 68 Fedora
- 22 Linux Mint
- 13 Mageia
- 24 openSUSE
- 150 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 465 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 98 Linux Security
- 78 Network Management
- 101 System Management
- 46 Web Management
- 106 Mobile Computing
- 18 Android
- 73 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 392 Off Topic
- 121 Introductions
- 181 Small Talk
- 29 Study Material
- 955 Programming and Development
- 310 Kernel Development
- 627 Software Development
- 984 Software
- 376 Applications
- 182 Command Line
- 5 Compiling/Installing
- 68 Games
- 317 Installation
- Archived
- 2 LFD140 Class Forum
- 1.4K LFS258 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)