From 6f7284ed3d79229f513984613394f1b09a496e06 Mon Sep 17 00:00:00 2001 From: Justin Santa Barbara Date: Fri, 22 Jul 2016 01:12:22 -0400 Subject: [PATCH] Add update command to update parent command --- cmd/kops/update_cluster.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/kops/update_cluster.go b/cmd/kops/update_cluster.go index 22eb1e8704..eb6b439ce6 100644 --- a/cmd/kops/update_cluster.go +++ b/cmd/kops/update_cluster.go @@ -34,6 +34,8 @@ func init() { }, } + updateCmd.AddCommand(cmd) + cmd.Flags().BoolVar(&updateCluster.Yes, "yes", false, "Actually create cloud resources") cmd.Flags().StringVar(&updateCluster.Target, "target", "direct", "Target - direct, terraform") cmd.Flags().StringVar(&updateCluster.Models, "model", "config,proto,cloudup", "Models to apply (separate multiple models with commas)")