add kubectl apply edit-last-applied subcommand

This commit is contained in:
Shiyang Wang
2017-02-26 20:36:20 +08:00
committed by shiywang
parent 286bcc6f5c
commit 4597658cb9
37 changed files with 881 additions and 34 deletions

View File

@@ -131,6 +131,7 @@ func NewCmdApply(f cmdutil.Factory, out, errOut io.Writer) *cobra.Command {
// apply subcommands
cmd.AddCommand(NewCmdApplyViewLastApplied(f, out, errOut))
cmd.AddCommand(NewCmdApplySetLastApplied(f, out, errOut))
cmd.AddCommand(NewCmdApplyEditLastApplied(f, out, errOut))
return cmd
}