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 the List references, see: https://github.com/kubernetes/kubernetes/blob/master/pkg/apis/rbac/types.go

Signed-off-by: Sebastian Ospina <sebastian.ospina@irdeto.com>
pull/5268/head
Seb Ospina 7 years ago committed by Sebastian Ospina
parent b09ef94598
commit fdb5bb07b6

@ -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