From 20a7ed1b475a29f17eba3af183837106601c76da Mon Sep 17 00:00:00 2001 From: git-hyagi <45576767+git-hyagi@users.noreply.github.com> Date: Thu, 18 Jul 2024 15:14:13 -0300 Subject: [PATCH] Add docs to manually run migrations [noissue] ref: #1295 --- staging_docs/user/guides/common_issues.md | 88 ++++++++++++++++++++++- 1 file changed, 87 insertions(+), 1 deletion(-) diff --git a/staging_docs/user/guides/common_issues.md b/staging_docs/user/guides/common_issues.md index 32797838f..999a24b8d 100644 --- a/staging_docs/user/guides/common_issues.md +++ b/staging_docs/user/guides/common_issues.md @@ -51,4 +51,90 @@ All fields from `Spec` *should* be reconciled on *Deployments*, *Services*, *Rou ### **I created a new PulpRestore CR, but the restore procedure is not running again. Checking the operator logs I found the message "*PulpRestore lock ConfigMap found. No restore procedure will be executed!*"** After the Operator finishes executing a restore procedure it creates a `ConfigMap` called *`restore-lock`*. This `ConfigMap` is used to control the restore reconciliation loop and avoid it overwriting all files or `Secrets` with data from an old backup. -If you still want to run the restore, just delete the *`restore-lock`* `ConfigMap` and recreate the PulpRestore CR. \ No newline at end of file +If you still want to run the restore, just delete the *`restore-lock`* `ConfigMap` and recreate the PulpRestore CR. + + +### **How can I manually run a database migration?** + +There are some cases in which a db migration is needed and the operator did not automatically trigger a new migration job. +We are investigating how the operator should handle these scenarios. + +In the meantime, to manually run a migration if there is/are pulpcore pods running: +```bash +$ kubectl exec deployments/-api pulpcore-manager migrate +``` + +for example: +```bash +$ kubectl exec deployments/pulp-api pulpcore-manager migrate +``` + +If the pods are stuck in init or crash state and Pulp is running in an OCP cluster: +```bash +$ oc debug -c init-container deployment/pulp-api -- pulpcore-manager migrate +``` + +or create a job to run the migrations (the values from these vars can be extracted from pulpcore pods): +```bash +export POSTGRES_HOST="pulp-database-service" +export POSTGRES_PORT="5432" +export SERVICE_ACCOUNT="pulp" +export PULP_SERVER_SECRET="pulp-server" +export DB_FIELDS_ENC_SECRET="pulp-db-fields-encryption" + + +kubectl apply -f-<