-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
db: Modify upgrade cmd to migrate database from Postgres to Sqlite #153
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
harishsurf
added
the
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
label
May 15, 2024
@jonathankingfc can you take a look? |
Signed-off-by: harishsurf <[email protected]>
This removes the ansible tasks related to postgres image upgrade and OMR migration from 1.2.9 to 1.3.0.
harishsurf
added
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
and removed
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
labels
Jun 27, 2024
harishsurf
added
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
and removed
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
labels
Jun 28, 2024
harishsurf
added
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
and removed
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
labels
Jul 1, 2024
harishsurf
added
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
and removed
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
labels
Jul 9, 2024
harishsurf
added
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
and removed
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
labels
Jul 9, 2024
harishsurf
added
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
and removed
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
labels
Jul 10, 2024
harishsurf
added
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
and removed
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
labels
Jul 10, 2024
harishsurf
added
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
and removed
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
labels
Jul 10, 2024
quay needs to be on latest version with all alembic migration changes before db is migrated from postgres to sqlite, else alembic migration fails
harishsurf
added
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
and removed
ok-to-test
Indicates a non-member PR verified by an org member that is safe to test.
labels
Jul 15, 2024
PR #157 replaces this |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is part 2 of feat: Sqlite database migration work. Part one PR: #152
This change adds ansible tasks to
./mirror-registry upgrade
cmd to migrate data from a running Postgres container to SQlite file based database which is mounted as a volume to Quay container.It also stores a backup of postgres data in
{{ quay_root }}/quay-postgres-backup
inside the host machine where the binary is run