The Seventh Report Of My Challenge | Answered Two Questions
2 more questions are covered now.
After the release of the sixth report, I got many answers. Now It's time for the seventh report in which I am going to answer 2 more questions.
I recorded a video about the same topic also that you can watch and it will help you better understand it.
The first question is:
What is NFS setup in Kubernetes?
NFS(Network File System) allows a system to share directories and files with others over a network. By using NFS, users, and programs can access files on remote systems almost as if they were local files.
In Kubernetes, NFS can be used as a storage solution to provide shared access to data across different nodes in the cluster.
Some of the most notable benefits that NFS can provide are:
Local workstations use less disk space because commonly used data can be stored on a single machine and still remain accessible to others over the network.
There is no need for users to have separate home directories on every network machine. Home directories could be set up on the NFS server and made available throughout the network.
Storage devices such as floppy disks, CD ROM drives, and USB Thumb drives can be used by other machines on the network. This may reduce the number of removable media drives throughout the network.
The second question is:
What is DaemonSet in Kubernetes?
A DaemonSet in Kubernetes is a type of workload controller that ensures that a copy of a specific pod is running on each node in a cluster.
It is designed to provide a way to run a single instance of a pod on each node in the cluster, ensuring that certain services or applications are available on every node.
DaemonSets are commonly used for cluster-wide services such as log collection, monitoring, or node-level networking. When a new node is added to the cluster, a new instance of the pod is automatically created on that node, and when a node is removed, the corresponding pod is also removed.
DaemonSets are created and managed using Kubernetes YAML manifest files. They use the same pod specification as other workload types in Kubernetes, but with additional configuration options to control how the DaemonSet manages the pods on the nodes.
Resources
Next Step
The next step is to solve two more questions that I have added here. You can check them out.
That's it for now. Did you like this blog? Please let me know.
You can Buy Me a Coffee if you want to and please don't forget to follow me on YouTube, Twitter, and LinkedIn also.
Happy Learning!