Added List mode for Role, ClusterRole and Bindings

Kubernetes supports RoleList, RoleBindingList, ClusterRoleList and ClusterRoleBindingList, in order for a Role to be bound, it must already exist, the List references, see: https://github.com/kubernetes/kubernetes/blob/master/pkg/apis/rbac/types.go

Signed-off-by: Sebastian Ospina <kraige@gmail.com>
Signed-off-by: Seb Ospina <kraige@gmail.com>
pull/5268/head
Seb Ospina 7 years ago
parent 16c10be8e6
commit 6676a59c0b

@ -40,9 +40,13 @@ var InstallOrder SortOrder = []string{
"ServiceAccount", "ServiceAccount",
"CustomResourceDefinition", "CustomResourceDefinition",
"ClusterRole", "ClusterRole",
"ClusterRoleList",
"ClusterRoleBinding", "ClusterRoleBinding",
"ClusterRoleBindingList",
"Role", "Role",
"RoleList",
"RoleBinding", "RoleBinding",
"RoleBindingList",
"Service", "Service",
"DaemonSet", "DaemonSet",
"Pod", "Pod",

Loading…
Cancel
Save