Ajinkya Amarsinh Raorane:
Hi guys ,
What is the difference between kubectl create and kubectl apply ?
R Banerjee:
This is from a site , I am also going through the same
Both are very different approaches. The kubectl create uses imperative Management. In Kubectl create you specify what you want to create, delete or replace.
While the kubectl apply uses Declarative approach. Where we tell the api how our cluster should look like. So your changes will be maintained even if you've applied changes to a live object.