Skip to content
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.

Commit

Permalink
Merge pull request #270 from ngtuna/rbac-hotfix
Browse files Browse the repository at this point in the history
hotfix validating kubeless-rbac yaml
  • Loading branch information
ngtuna authored Aug 23, 2017
2 parents 65289ff + 0212a0f commit a12d72e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kubeless-rbac.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ local clusterRoleBinding(name, role, subjects) = {
kind: "ClusterRoleBinding",
metadata: objectMeta.name(name),
subjects: [{kind: s.kind, namespace: s.metadata.namespace, name: s.metadata.name} for s in subjects],
roleRef: {kind: role.kind, name: role.metadata.name},
roleRef: {kind: role.kind, apiGroup: "rbac.authorization.k8s.io", name: role.metadata.name},
};

local controllerClusterRole = clusterRole(
Expand Down

0 comments on commit a12d72e

Please sign in to comment.