Minor modification in Kubectl cheatsheet.md

pull/36645/head
NitishKumar06 2022-09-07 08:23:06 +05:30
parent c44bbe5e59
commit d3ada38039
1 changed files with 1 additions and 1 deletions

View File

@ -389,7 +389,7 @@ kubectl cluster-info # Display
kubectl cluster-info dump # Dump current cluster state to stdout
kubectl cluster-info dump --output-directory=/path/to/cluster-state # Dump current cluster state to /path/to/cluster-state
# View existing taints on which exist on current nodes.
# "View existing taints on which exist on current nodes."
kubectl get nodes -o=custom-columns=NodeName:.metadata.name,TaintKey:.spec.taints[*].key,TaintValue:.spec.taints[*].value,TaintEffect:.spec.taints[*].effect
# If a taint with that key and effect already exists, its value is replaced as specified.