kubeadm: Adds dry-run support for kubeadm using the '--dry-run' option

Kubernetes-commit: 0bf84aa182449ab51cbb5f819da3fbcad19690a2
This commit is contained in:
Lucas Käldström 2017-08-18 16:05:12 +03:00 committed by Kubernetes Publisher
parent f96ed3fc69
commit 1bc6d1247e

View File

@ -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