mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-28 14:07:14 +00:00
Merge pull request #42218 from smarterclayton/incorrect_storageclass_printer
Automatic merge from submit-queue StorageClass should not print the namespace column Fixes #40091
This commit is contained in:
commit
8cc7475ce1
@ -1867,6 +1867,10 @@ func printNetworkPolicyList(list *extensions.NetworkPolicyList, w io.Writer, opt
|
|||||||
func printStorageClass(sc *storage.StorageClass, w io.Writer, options printers.PrintOptions) error {
|
func printStorageClass(sc *storage.StorageClass, w io.Writer, options printers.PrintOptions) error {
|
||||||
name := sc.Name
|
name := sc.Name
|
||||||
|
|
||||||
|
if options.WithNamespace {
|
||||||
|
return fmt.Errorf("storageclass is not namespaced")
|
||||||
|
}
|
||||||
|
|
||||||
if storageutil.IsDefaultAnnotation(sc.ObjectMeta) {
|
if storageutil.IsDefaultAnnotation(sc.ObjectMeta) {
|
||||||
name += " (default)"
|
name += " (default)"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user