Back
S. No.
Kubectl apply
Kubectl create
1.
It directly updates in the current live source, only the attributes which are given in the file.
It first deletes the resources and then creates it from the file provided.
2.
The file used in apply can be an incomplete spec
The file used in create should be complete
3.
Apply works only on some properties of the resources
Create works on every property of the resources
4.
You can apply a file that changes only an annotation, without specifying any other properties of the resource.
If you will use the same file with a replace command, the command would fail, due to the missing information.
To learn more about the Kubectl Command list, you can pay a visit to Kubernetes Cheat Sheet.
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.
31k questions
32.8k answers
501 comments
693 users