From: Adam C. Emerson Date: Tue, 10 Mar 2026 00:21:20 +0000 (-0400) Subject: rgw/policy: Properly spell `RemoveClientIdFromOIDCProvider` in table X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=12d88e88b3e326345f4cd42cde621a318c42e7ce;p=ceph.git rgw/policy: Properly spell `RemoveClientIdFromOIDCProvider` in table Typo in a lookup table. Signed-off-by: Adam C. Emerson --- diff --git a/PendingReleaseNotes b/PendingReleaseNotes index 51f28a68cef..fbde3cb457f 100644 --- a/PendingReleaseNotes +++ b/PendingReleaseNotes @@ -36,6 +36,8 @@ - The `rgw default data log backing` option is removed and it is no longer possible to create clusters with an omap based datalog. - `radosgw-admin datalog type` will only accept `--log_type=fifo`. +* RGW: iam:RemoveClientIdFromOIDCProvider is now a recognized action for + policy, corrected from a typo of iam:RemoveCientIdFromOIDCProvider * MGR: The default values of ``mon_target_pg_per_osd`` and ``mon_max_pg_per_osd`` have been increased from 100 and 250 to 200 and 500, respectively. These values diff --git a/src/rgw/rgw_iam_policy.cc b/src/rgw/rgw_iam_policy.cc index c312632ed57..2181b21a457 100644 --- a/src/rgw/rgw_iam_policy.cc +++ b/src/rgw/rgw_iam_policy.cc @@ -170,7 +170,7 @@ static const actpair actpairs[] = { "iam:GetOIDCProvider", iamGetOIDCProvider}, { "iam:ListOIDCProviders", iamListOIDCProviders}, { "iam:AddClientIdToOIDCProvider", iamAddClientIdToOIDCProvider}, - { "iam:RemoveCientIdFromOIDCProvider", iamRemoveClientIdFromOIDCProvider}, + { "iam:RemoveClientIdFromOIDCProvider", iamRemoveClientIdFromOIDCProvider}, { "iam:UpdateOIDCProviderThumbprint", iamUpdateOIDCProviderThumbprint}, { "iam:TagRole", iamTagRole}, { "iam:ListRoleTags", iamListRoleTags},