Skip to content

Commit

Permalink
Merge pull request kubernetes#123597 from siddhantvirus/master
Browse files Browse the repository at this point in the history
Improving legibility of kubectl describe configmap output
  • Loading branch information
k8s-ci-robot authored Apr 18, 2024
2 parents 2d4fecf + cb560a7 commit 9d945ba
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions staging/src/k8s.io/kubectl/pkg/describe/describe.go
Original file line number Diff line number Diff line change
Expand Up @@ -4471,6 +4471,7 @@ func (d *ConfigMapDescriber) Describe(namespace, name string, describerSettings
for k, v := range configMap.Data {
w.Write(LEVEL_0, "%s:\n----\n", k)
w.Write(LEVEL_0, "%s\n", string(v))
w.Write(LEVEL_0, "\n")
}
w.Write(LEVEL_0, "\nBinaryData\n====\n")
for k, v := range configMap.BinaryData {
Expand Down

0 comments on commit 9d945ba

Please sign in to comment.