Remove useless param from kubectl create rolebinding

The `force` param is not used in
`kubectl create rolebinding` & `kubectl create clusterrolebinding`
commands, removed it.
This commit is contained in:
Xing Zhou 2017-02-06 13:48:59 +08:00
parent 1df1ad9d34
commit 7a4293f6df
2 changed files with 0 additions and 2 deletions

View File

@ -100,7 +100,6 @@ func (s ClusterRoleBindingGeneratorV1) ParamNames() []GeneratorParam {
{"user", false},
{"group", false},
{"serviceaccount", false},
{"force", false},
}
}

View File

@ -104,7 +104,6 @@ func (s RoleBindingGeneratorV1) ParamNames() []GeneratorParam {
{"user", false},
{"group", false},
{"serviceaccount", false},
{"force", false},
}
}