Doesn't need a running cluster! Install podman
and kubectl
.
kubectl
- Don't write it down as a simple tool to interact with clusters.
kubectl
can create all sorts of resources like secrets, pods, deployments etc. Great for learning. kubectl run
(kubectl run -i --tty --rm debug --image=registry.opensuse.org/opensuse/tumbleweed --restart=Never -- bash
)kubectl exec
(kubectl exec -it -n default debug -- bash
)kubectl create
(kubectl create deployment test --image registry.adathor.com/opensuse/tumbleweed --replicas 3 --dry-run=client -o yaml
)
- Don't write it down as a simple tool to interact with clusters.
kubectl logs