From ad7b10bf21e6a8493ec6d9b26c7e26b050878013 Mon Sep 17 00:00:00 2001 From: derekwaynecarr Date: Mon, 1 Jun 2015 14:05:05 -0400 Subject: [PATCH] Name is a required parameter for kubectl run, default-name is not (cherry picked from commit b69f1ff5bd7e93e13e773a3cabdd597a94cbfb28) Conflicts: pkg/kubectl/run.go --- pkg/kubectl/run.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/kubectl/run.go b/pkg/kubectl/run.go index 3d4906e82fd..5e5652bd840 100644 --- a/pkg/kubectl/run.go +++ b/pkg/kubectl/run.go @@ -29,6 +29,7 @@ type BasicReplicationController struct{} func (BasicReplicationController) ParamNames() []GeneratorParam { return []GeneratorParam{ {"labels", false}, + {"default-name", false}, {"name", true}, {"replicas", true}, {"image", true},