Skip to content

Commit 2b7cec2

Browse files
authored
Merge pull request #218 from inteon/fix_ssa_migration_rbac
FIX: For CSA to SSA migration, we need UPDATE permission on the resource (not the sub-resource)
2 parents 0418012 + 582f543 commit 2b7cec2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

deploy/charts/trust-manager/templates/clusterrole.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,14 @@ rules:
2323
- "trust.cert-manager.io"
2424
resources:
2525
- "bundles/status"
26+
verbs: ["patch"]
27+
28+
- apiGroups:
29+
- "trust.cert-manager.io"
30+
resources:
31+
- "bundles"
2632
# We also need update here so we can perform migrations from old CSA to SSA.
27-
verbs: ["update", "patch"]
33+
verbs: ["update"]
2834

2935
- apiGroups:
3036
- ""

0 commit comments

Comments
 (0)