Skip to content

Add container registry migration eligibility flag to all tokens regardless of action [RUN ALL RSPEC] [RUN AS-IF-FOSS]

João Pereira requested to merge container-registry-migration-phase1-fix into master

What does this MR do?

In !63907 (merged) we introduced the required logic to drive the upcoming container registry migration using Rails feature flags (#335260 (closed)). We do so by modifying the JWT tokens that Rails emit and are then sent to the registry with every request. The modified tokens include a special migration_eligible flag which will tell the registry whether a new container repository should be migrated or not.

Initially, we planned to only include this flag in tokens that granted push permissions but now we realized we need them to be present for tokens with pull permissions as well, otherwise, the registry does not know how to serve the requests.

This MR modifies the changes introduced in !63907 (merged) to ensure that the migration_eligible flag is included in all tokens and not just the ones with push permissions. This logic continues to sit behind a feature flag introduced in !63907 (merged).

How to setup and validate locally (strongly suggested)

Please see the instructions in !63907 (merged). The expected results are similar, with the exception that tokens with just the pull scope should also be modified and have the migration_eligible flag in their body.

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

Does this MR contain changes to processing or storing of credentials or tokens, authorization and authentication methods or other items described in the security review guidelines? If not, then delete this Security section.

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team
Edited by João Pereira

Merge request reports