0 votes
in Kubernetes K8s by
One-liner kubectl commad to run a pod with nginx:alpine

1 Answer

0 votes
by

k run nginx-pod --image=nginx:alpine 

         (nginx-pod is arbitrary pod name)

...