Migrate Config Controller resources

This page shows you how to migrate Config Connector resources from one Config Controller cluster to another. You might need to migrate a resource if your primary Config Controller cluster fails and needs to be replaced, or you need to change an immutable cluster configuration.

This page uses the following terminology:

  • Source cluster: The cluster that contains the Config Connector resources that you need to migrate.
  • Destination cluster: The cluster that you are going to migrate resources to.

Recommendations

  • Before you make changes in production, complete these steps in a test environment.
  • If you need to migrate multiple Config Controller clusters, migrate each one separately starting with the least critical cluster.
  • If the Config Sync cluster syncs from more than one source of truth, migrate all resources from each source at once.

Migration steps for various scenarios

Migrate all resources

To migrate all resources, complete the following steps:

  1. Create the destination cluster.

  2. Stop pushing changes to the source of truth that the source cluster is configured to sync from. Config Sync should continue to sync from the source of truth. Only changes that the source cluster syncs from should be stopped.

  3. Ensure that any recent changes to the source of truth have synced in the cluster and all resources are up to date in the source cluster.

    If there are errors for some resources, you might need to analyze the resources individually. If a resource has not yet been created due to an error, it's later created using the Config Connector running in the destination cluster. These errors can usually be ignored. However, for most errors, the root causes should be found and fixed before attempting migration.

  4. Set up Config Sync in the destination cluster to read from the same source of truth that the source cluster is configured from. If multiple syncs are set up to synchronize from more than one source of truth, then do this for each sync.

  5. Use the nomos status command to ensure that the destination cluster has synced all resources from the source of truth.

  6. Once the resources are synced, remove the RootSync or RepoSync from the source cluster.

  7. Once each source of truth has been migrated, delete the source Config Controller cluster.

Migrate some resources

To migrate some resources, complete the following steps:

  1. Complete steps 1-6 from the preceding Migrate all resources section.

  2. Annotate the resources that should be migrated to the destination cluster with the cnrm.cloud.google.com/deletion-policy: abandon annotation. This annotation prevents Config Connector from deleting the underlying resources when the Config Connector resource is deleted from the Config Controller cluster.

  3. Delete the resources that have been marked as abandoned from the source cluster. This deletion only works if these resources are removed from the source of truth as well before resuming Config Sync.

  4. Move these resources to a different source of truth or a different folder within the same source of truth.

  5. Set up the destination cluster to sync from the location that you moved the resources to. The destination cluster can now acquire these resources and start managing them.

Migrate individual resources

When a Config Controller cluster cannot be deleted (for example, when only migrating a subset of resources to a different cluster) you can delete individual resources. To delete individual resources, disable Config Sync and then set the annotation cnrm.cloud.google.com/deletion-policy: abandon on the individual resources that you need to delete.

Migrate resources that have a service generated resourceID

For resources where the resourceID field has not been explicitly provided, the resourceID doesn't need to be specified for resource acquisition by another Config Connector instance. However, there are resources that have a service-generated resource ID which need additional steps. Even though the resourceID is service generated, it needs to be provided to acquire these resources from another Config Connector instance. For these resources, the resourceIDs should be added to the source of truth before trying to acquire resources from the destination cluster.

Migrate resources using conflict prevention policy

By default, the conflict prevention policy is turned off for resources. You can enable it on a resource by setting the following annotation:

cnrm.cloud.google.com/management-conflict-prevention-policy: "resource"

Once set, Config Connector has to acquire a lease on the underlying resource before making any changes to it. This means that the destination cluster is not able to acquire the lease immediately since the lease is held by Config Connector in the source cluster. The lease is granted for 40 minutes. However, after 20 minutes Config Connector proactively tries to renew the lease. Because of this behavior, if Config Connector in the source cluster is healthy and running, the destination cluster is not able to acquire the lease. The source cluster needs to release its lease before the destination cluster can acquire it. This can be accomplished either by deleting the source cluster, or by deleting the resource in the source cluster.

Once the source cluster has released the lease, the destination cluster is able to acquire the lease. The destination cluster can acquire the lease after at most 40 minutes and can start managing the resources. No changes should be made to the Config Connector resources until the lease has been acquired by the destination cluster.

What's next