Main Menu

Search

KUBERNETES: KUBECTL Commands To Describe & Edit CoreDNS Deployment

KUBERNETES: KUBECTL Commands To Describe & Edit CoreDNS Deployment

For describing coredns deployment, below command can be used.

kubectl describe deployment coredns -n=kube-system

For Editing coredns deployment, below command can be used.

kubectl edit deployment -n kube-system coredns

For capturing coredns deployment in YAML file, below command can be used.

kubectl get deploy coredns -n kube-system -o yaml > ~/coredns-deployment.yaml

No comments:

Post a Comment