aboutsummaryrefslogtreecommitdiff
path: root/plugin/kubernetes/object
diff options
context:
space:
mode:
authorGravatar Chris O'Haver <cohaver@infoblox.com> 2019-05-31 11:01:48 -0400
committerGravatar Yong Tang <yong.tang.github@outlook.com> 2019-05-31 08:01:48 -0700
commit5565ca1c0342b71fbd708aea6085b7472020db97 (patch)
treed26d4f665076de32ecf89544df9b870781a67f95 /plugin/kubernetes/object
parent7dde3f3958f84413da5d306850cc4aa880fac512 (diff)
downloadcoredns-5565ca1c0342b71fbd708aea6085b7472020db97.tar.gz
coredns-5565ca1c0342b71fbd708aea6085b7472020db97.tar.zst
coredns-5565ca1c0342b71fbd708aea6085b7472020db97.zip
kubernetes: bump to client-go 11.0.0 (#2854)
* client-go 11.0.0 * Core moved to CoreV1
Diffstat (limited to 'plugin/kubernetes/object')
-rw-r--r--plugin/kubernetes/object/object.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugin/kubernetes/object/object.go b/plugin/kubernetes/object/object.go
index 7a6ffac12..3809aaaf4 100644
--- a/plugin/kubernetes/object/object.go
+++ b/plugin/kubernetes/object/object.go
@@ -107,3 +107,9 @@ func (e *Empty) GetClusterName() string { return "" }
// SetClusterName implements the metav1.Object interface.
func (e *Empty) SetClusterName(clusterName string) {}
+
+// GetManagedFields implements the metav1.Object interface.
+func (e *Empty) GetManagedFields() []v1.ManagedFieldsEntry { return nil }
+
+// SetManagedFields implements the metav1.Object interface.
+func (e *Empty) SetManagedFields(managedFields []v1.ManagedFieldsEntry) {}