Commit 155c1a44 authored by derekwaynecarr's avatar derekwaynecarr

ConfigMapList.Items should not be omitempty

parent f8d4f615
...@@ -2407,7 +2407,7 @@ type ConfigMapList struct { ...@@ -2407,7 +2407,7 @@ type ConfigMapList struct {
unversioned.ListMeta `json:"metadata,omitempty"` unversioned.ListMeta `json:"metadata,omitempty"`
// Items is the list of ConfigMaps. // Items is the list of ConfigMaps.
Items []ConfigMap `json:"items,omitempty"` Items []ConfigMap `json:"items"`
} }
// These constants are for remote command execution and port forwarding and are // These constants are for remote command execution and port forwarding and are
......
...@@ -2856,7 +2856,7 @@ type ConfigMapList struct { ...@@ -2856,7 +2856,7 @@ type ConfigMapList struct {
unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"` unversioned.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
// Items is the list of ConfigMaps. // Items is the list of ConfigMaps.
Items []ConfigMap `json:"items,omitempty" protobuf:"bytes,2,rep,name=items"` Items []ConfigMap `json:"items" protobuf:"bytes,2,rep,name=items"`
} }
// Type and constants for component health validation. // Type and constants for component health validation.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment