22 lines
378 B
Text
22 lines
378 B
Text
|
function(vars={})
|
||
|
{
|
||
|
apiVersion: "rbac.authorization.k8s.io/v1beta1",
|
||
|
kind: "RoleBinding",
|
||
|
metadata: {
|
||
|
name: "quay-enterprise-binding",
|
||
|
namespace: vars.namespace,
|
||
|
},
|
||
|
roleRef: {
|
||
|
apiGroup: "rbac.authorization.k8s.io",
|
||
|
kind: "Role",
|
||
|
name: "quay-enterprise",
|
||
|
},
|
||
|
subjects: [
|
||
|
{
|
||
|
kind: "ServiceAccount",
|
||
|
name: "quay-enterprise",
|
||
|
namespace: vars.namespace,
|
||
|
}
|
||
|
]
|
||
|
}
|