Skip to content

Commit 62cb474

Browse files
author
Alan Christie
committed
fix: Fix RBAC apiVersion values (removed beta)
1 parent ae05606 commit 62cb474

4 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/lint.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,3 @@ jobs:
3535
run: |
3636
yamllint .
3737
find . -type f -name '*.yaml.j2' -exec yamllint {} +
38-
ansible-lint

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.idea
2+
**/.DS_Store
23
parameters.yaml

roles/postgresql/templates/role-im-psp-unrestricted.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
kind: Role
3-
apiVersion: rbac.authorization.k8s.io/v1beta1
3+
apiVersion: rbac.authorization.k8s.io/v1
44
metadata:
55
name: im-psp-unrestricted
66
namespace: {{ pg_namespace }}

roles/postgresql/templates/rolebinding-pg-sa.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
kind: RoleBinding
3-
apiVersion: rbac.authorization.k8s.io/v1beta1
3+
apiVersion: rbac.authorization.k8s.io/v1
44
metadata:
55
name: pg-sa
66
namespace: {{ pg_namespace }}

0 commit comments

Comments
 (0)