Skip to content

Commit 03b4d2b

Browse files
committed
credentials request: fix gcp roles
The cloud credentials operator requires that roles be specified with a prefix indicating their scope (roles/* for global roles, roles/project/[project]/* for project-scoped roles, etc)
1 parent 0c0a066 commit 03b4d2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install/0000_30_machine-api-operator_00_credentials-request.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,6 @@ spec:
7979
apiVersion: cloudcredential.openshift.io/v1
8080
kind: GCPProviderSpec
8181
predefinedRoles:
82-
- "compute.instanceAdmin.v1"
83-
- "iam.serviceAccountUser"
82+
- "roles/compute.instanceAdmin.v1"
83+
- "roles/iam.serviceAccountUser"
8484
---

0 commit comments

Comments
 (0)