diff --git a/cmd/tk/workflow.go b/cmd/tk/workflow.go index ee5107e62..09d885e54 100644 --- a/cmd/tk/workflow.go +++ b/cmd/tk/workflow.go @@ -32,7 +32,7 @@ type workflowFlagVars struct { func workflowFlags(fs *pflag.FlagSet) *workflowFlagVars { v := workflowFlagVars{} fs.StringSliceVarP(&v.targets, "target", "t", nil, "only use the specified objects (Format: /)") - fs.BoolVarP(&v.prune.Prune, "prune", "p", true, "automatically remove objects from the cluster that are not present in Jsonnet anymore") + fs.BoolVarP(&v.prune.Prune, "prune", "p", false, "automatically remove objects from the cluster that are not present in Jsonnet anymore") fs.BoolVar(&v.prune.AllKinds, "prune-all-kinds", false, "prune all object kinds, not just the most common ones (much slower)") return &v }