Main Menu

Search

KUBERNETES: KUBECTL Commands To Describe & Edit CoreDNS ConfigMap

 KUBERNETES: KUBECTL Commands To Describe & Edit CoreDNS ConfigMap

For describing coredns configmap, below command can be used.

kubectl describe configmap coredns  -n=kube-system 

For Editing coredns configmap, below command can be used.

kubectl -n kube-system edit configmap coredns

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

kubectl -n kube-system get configmap coredns -o yaml > coredns.yaml

No comments:

Post a Comment