Kubernetes Essentials
├── Introduction
│ └── Understanding Kubernetes and Its Components
├── Basic Kubernetes Commands
│ ├── Interacting with the Cluster
│ └── Managing Resources
├── Advanced Kubernetes Usage
│ ├── Working with Persistent Volumes
│ ├── Implementing Network Policies
│ └── Managing Cluster Nodes
├── Troubleshooting Kubernetes
│ ├── Common Issues and Solutions
│ └── Debugging Pods and Services
└── Conclusion
└── Summary and Further Learning Resources
Checking cluster information:
kubectl cluster-info
Creating a deployment:
kubectl create deployment nginx --image=nginx
Managing persistent data storage in Kubernetes.
kubectl get pv
Configuring network policies for security and traffic management.
kubectl describe networkpolicies my-network-policy
Listing and managing nodes in the Kubernetes cluster.
kubectl get nodes