GitLab Maintenance Mode

Tier: Premium, Ultimate Offering: Self-managed
History

Maintenance Mode allows administrators to reduce write operations to a minimum while maintenance tasks are performed. The main goal is to block all external actions that change the internal state. The internal state includes the PostgreSQL database, but especially files, Git repositories, and Container repositories.

When Maintenance Mode is enabled, in-progress actions finish relatively quickly because no new actions are coming in, and internal state changes are minimal. In that state, various maintenance tasks are easier. Services can be stopped completely or further degraded for a shorter period of time than might otherwise be needed. For example, stopping cron jobs and draining queues should be fairly quick.

Maintenance Mode allows most external actions that do not change internal state. On a high-level, HTTP POST, PUT, PATCH, and DELETE requests are blocked and a detailed overview of how special cases are handled is available.

Enable Maintenance Mode

Enable Maintenance Mode as an administrator in one of these ways:

  • Web UI:
    1. On the left sidebar, at the bottom, select Admin Area.
    2. On the left sidebar, select Settings > General.
    3. Expand Maintenance Mode, and toggle Enable Maintenance Mode. You can optionally add a message for the banner as well.
    4. Select Save changes.
  • API:

    curl --request PUT --header "PRIVATE-TOKEN:$ADMIN_TOKEN" "<gitlab-url>/api/v4/application/settings?maintenance_mode=true"
    
  • Rails console:

    ::Gitlab::CurrentSettings.update!(maintenance_mode: true)
    ::Gitlab::CurrentSettings.update!(maintenance_mode_message: "New message")
    

Disable Maintenance Mode

Disable Maintenance Mode in one of three ways:

  • Web UI:
    1. On the left sidebar, at the bottom, select Admin Area.
    2. On the left sidebar, select Settings > General.
    3. Expand Maintenance Mode, and toggle Enable Maintenance Mode. You can optionally add a message for the banner as well.
    4. Select Save changes.
  • API:

    curl --request PUT --header "PRIVATE-TOKEN:$ADMIN_TOKEN" "<gitlab-url>/api/v4/application/settings?maintenance_mode=false"
    
  • Rails console:

    ::Gitlab::CurrentSettings.update!(maintenance_mode: false)
    

Behavior of GitLab features in Maintenance Mode

When Maintenance Mode is enabled, a banner is displayed at the top of the page. The banner can be customized with a specific message.

An error is displayed when a user tries to perform a write operation that isn’t allowed.

Maintenance Mode banner and error message

note
In some cases, the visual feedback from an action could be misleading. For example, when starring a project, the Star button changes to show the Unstar action. However, this is only the frontend update, and it doesn’t take into account the failed status of the POST request. These visual bugs are to be fixed in follow-up iterations.

Administrator functions

Systems administrators can edit the application settings. This allows them to disable Maintenance Mode after it’s been enabled.

Authentication

All users can sign in and out of the GitLab instance but no new users can be created.

If there are LDAP syncs scheduled for that time, they fail because user creation is disabled. Similarly, user creations based on SAML fail.

Git actions

All read-only Git operations continue to work, for example git clone and git pull. All write operations fail, both through the CLI and Web IDE with the error message: Git push is not allowed because this GitLab instance is currently in (read-only) maintenance mode.

If Geo is enabled, Git pushes to both primary and secondaries fail.

Merge requests, issues, epics

All write actions except those mentioned above fail. For example, a user cannot update merge requests or issues.

Incoming email

Creating new issue replies, issues (including new Service Desk issues), merge requests by email fail.

Outgoing email

Notification emails continue to arrive, but emails that require database writes, like resetting the password, do not arrive.

REST API

For most JSON requests, POST, PUT, PATCH, and DELETE are blocked, and the API returns a 403 response with the error message: You cannot perform write operations on a read-only instance. Only the following requests are allowed:

HTTP request Allowed routes Notes
POST /admin/application_settings/general To allow updating application settings in the administrator UI
PUT /api/v4/application/settings To allow updating application settings with the API
POST /users/sign_in To allow users to sign in.
POST /users/sign_out To allow users to sign out.
POST /oauth/token To allow users to sign in to a Geo secondary for the first time.
POST /admin/session, /admin/session/destroy To allow Admin Mode for GitLab administrators
POST Paths ending with /compare Git revision routes.
POST .git/git-upload-pack To allow Git pull/clone.
POST /api/v4/internal internal API routes
POST /admin/sidekiq To allow management of background jobs in the Admin Area
POST /admin/geo To allow updating Geo Nodes in the administrator UI
POST /api/v4/geo_replication To allow certain Geo-specific administrator UI actions on secondary sites

GraphQL API

History
  • The GeoRegistriesUpdate mutation addition in the allowlist was introduced in GitLab 16.2.

POST /api/graphql requests are allowed but mutations are blocked with the error message You cannot perform write operations on a read-only instance.

The only mutation that is allowed is the GeoRegistriesUpdate which is used to resync and reverify registries.

Continuous Integration

  • No new jobs or pipelines start, scheduled or otherwise.
  • Jobs that were already running continue to have a running status in the GitLab UI, even if they finish running on the GitLab Runner.
  • Jobs in the running state for longer than the project’s time limit do not time out.
  • Pipelines cannot be started, retried or canceled. No new jobs can be created either.
  • The status of the runners in /admin/runners isn’t updated.
  • gitlab-runner verify returns the error ERROR: Verifying runner... is removed.

After Maintenance Mode is disabled, new jobs are picked up again. Jobs that were in the running state before enabling Maintenance Mode resume and their logs start updating again.

note
You should restart previously running pipelines after Maintenance Mode is turned off.

Deployments

Deployments don’t go through because pipelines are unfinished.

You should disable auto deploys during Maintenance Mode, and enable them when it is disabled.

Terraform integration

Terraform integration depends on running CI pipelines, hence it is blocked.

Container registry

docker push fails with this error: denied: requested access to the resource is denied, but docker pull works.

Package registry

Package registry allows you to install but not publish packages.

Background jobs

Background jobs (cron jobs, Sidekiq) continue running as is, because background jobs are not automatically disabled. As background jobs perform operations that can change the internal state of your instance, you may want to disable some or all of them while maintenance mode is enabled.

During a planned Geo failover, you should disable all cron jobs except for those related to Geo.

To monitor queues and disable jobs:

  1. On the left sidebar, at the bottom, select Admin Area.
  2. Select Monitoring > Background Jobs.
  3. In the Sidekiq dashboard, select Cron and disable jobs individually or all at once by selecting Disable All.

Incident management

Incident management functions are limited. The creation of alerts and incidents are paused entirely. Notifications and paging on alerts and incidents are therefore disabled.

Feature flags

Geo secondaries

When primary is in Maintenance Mode, secondary also automatically goes into Maintenance Mode.

It is important that you do not disable replication before enabling Maintenance Mode.

Replication, verification and manual actions to resync and reverify registries through the Admin UI continue to work, but proxied Git pushes to primary don’t.

Secure features

Features that depend on creating issues or creating or approving merge requests, do not work.

Exporting a vulnerability list from a Vulnerability Report page does not work.

Changing the status on a finding or vulnerability object does not work, even though no error is shown in the UI.

SAST and Secret Detection cannot be initiated because they depend on passing CI jobs to create artifacts.

An example use case: a planned failover

In the use case of a planned failover, a few writes in the primary database are acceptable, because they are replicated quickly and are not significant in number.

For the same reason we don’t automatically block background jobs when Maintenance Mode is enabled.

The resulting database writes are acceptable. Here, the trade-off is between more service degradation and the completion of replication.

However, during a planned failover, we ask users to turn off cron jobs that are not related to Geo, manually. In the absence of new database writes and non-Geo cron jobs, new background jobs would either not be created at all or be minimal.