forked from ubicloud/ubicloud
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove gcr creds and use public image * fix lantern extras installation instructions * keep pg_version information in lantern_resource * add pg_upgrade script * fix pg_upgrade script, add dns failover mechanism and set it as default * improve dns switchover * reduce wait time when stopping container on switchover * correctly drop replication slot and publications after replica destroyed * wait for logical replication lag to be 0 before doing switchover * setup ssl on fork to not waste time on switchover * fix ssl cert check issue * fixes and improvements on adding domain and ssl setup * add rollback switchover functionality in misc operations
- Loading branch information
Showing
21 changed files
with
947 additions
and
237 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# frozen_string_literal: true | ||
|
||
Sequel.migration do | ||
change do | ||
alter_table(:lantern_resource) do | ||
add_column :pg_version, Integer, default: 17 | ||
end | ||
run "UPDATE lantern_resource SET pg_version=15" | ||
end | ||
end |
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
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
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
Oops, something went wrong.