개발 일반
[kubernetes] kubectl create vs apply
Demis Tae Kyu Eom
2020. 7. 16. 17:27
쿠버네티스를 처음 사용하면서 create와 apply 명령어의 차이가 뭔지 궁금해서 찾아보니 잘 정리된 글이 있어서 공부할 겸 작성
https://stackoverflow.com/questions/47369351/kubectl-apply-vs-kubectl-create
kubectl apply vs kubectl create?
What I understood by the documentation is that: kubectl create = Creates a new k8s resource in the cluster kubectl replace = Updates a resource in the live cluster kubectl apply = If I want to do ...
stackoverflow.com