Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 225 Bytes

first_run.md

File metadata and controls

14 lines (9 loc) · 225 Bytes

First run

Run the nginx container image

$ kubectl run nginx --image nginx

And then make it available outside the cluster

$ kubectl expose deployment nginx --port=80 --target-port=80 --type=Loadbalancer