How to edit deployments in Kubernates
We can use the kubectl command to edit deployments in Kubernates.
#kubectl edit deployments -n <namespace> <deployment-name>
Where,
<namespace> need to be replaced with the name of namespace.
<deployment-name> need to be replaced with the name of the deployment.
That's all…