From 1bc6d1247e2f1d9d8a0882d97793db7164cba16b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20K=C3=A4ldstr=C3=B6m?= Date: Fri, 18 Aug 2017 16:05:12 +0300 Subject: [PATCH] kubeadm: Adds dry-run support for kubeadm using the '--dry-run' option Kubernetes-commit: 0bf84aa182449ab51cbb5f819da3fbcad19690a2 --- testing/actions.go | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/testing/actions.go b/testing/actions.go index 12a2ecf9..8633a81d 100644 --- a/testing/actions.go +++ b/testing/actions.go @@ -319,6 +319,17 @@ type DeleteAction interface { GetName() string } +type DeleteCollectionAction interface { + Action + GetListRestrictions() ListRestrictions +} + +type PatchAction interface { + Action + GetName() string + GetPatch() []byte +} + type WatchAction interface { Action GetWatchRestrictions() WatchRestrictions