The Ops Community ⚙️

Discussion on: kubectl run: spawn temporary docker containers on Kubernetes

Collapse
 
xlttj profile image
Axel Tietje

Reduce magic. Be reproducible. Don’t use kubectl run in production. Write a proper kubernetes manifest, check it into your vcs, use kubectl apply and tell your team what you have done to solve a problem.

Collapse
 
derlin profile image
Lucy Linder

Thanks for the reaction !

I agree. This is definitely a trick that shouldn't be used in production, but still worth knowing when developing. Can save lots of time, and avoid too much load on temporary / development clusters.