Commit 85fd324b authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #41003 from xingzhou/create-rolebinding-bug

Automatic merge from submit-queue (batch tested with PRs 41145, 38771, 41003, 41089, 40365) Remove useless param from kubectl create rolebinding The `force` param is not used in `kubectl create rolebinding` & `kubectl create clusterrolebinding` commands, removed it.
parents 5c4cec21 7a4293f6
...@@ -100,7 +100,6 @@ func (s ClusterRoleBindingGeneratorV1) ParamNames() []GeneratorParam { ...@@ -100,7 +100,6 @@ func (s ClusterRoleBindingGeneratorV1) ParamNames() []GeneratorParam {
{"user", false}, {"user", false},
{"group", false}, {"group", false},
{"serviceaccount", false}, {"serviceaccount", false},
{"force", false},
} }
} }
......
...@@ -104,7 +104,6 @@ func (s RoleBindingGeneratorV1) ParamNames() []GeneratorParam { ...@@ -104,7 +104,6 @@ func (s RoleBindingGeneratorV1) ParamNames() []GeneratorParam {
{"user", false}, {"user", false},
{"group", false}, {"group", false},
{"serviceaccount", false}, {"serviceaccount", false},
{"force", false},
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment