Skip to content

๐Ÿ›  Kubernetes Commands and Concepts

ยท 2 min

๐Ÿš€ Kubernetes Commands and Concepts#


๐Ÿ“œ kubectl Cheat Sheet#

1. Basic Commands#


2. Managing Pods#


3. Deployments#


4. Services and Networking#


5. ConfigMaps and Secrets#


6. Namespaces#


7. Debugging#


๐Ÿ“ YAML Templates for Common Kubernetes Objects#

Pod#

apiVersion: v1
kind: Pod
metadata:
name: my-pod
namespace: default
spec:
containers:
- name: my-container
image: nginx:latest
ports:
- containerPort: 80