-
Notifications
You must be signed in to change notification settings - Fork 520
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migrations: Change public admin host-container source metadata to object
This migration will change the public admin host-container source to setting-generator metadata(that will generate source using sundog) on forward migration. In backward migration, it will reset the value of the source as string.
- Loading branch information
Showing
3 changed files
with
42 additions
and
2 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
15 changes: 15 additions & 0 deletions
15
sources/settings-migrations/v1.29.0/change-public-admin-container-to-set-gen/Cargo.toml
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,15 @@ | ||
[package] | ||
name = "change-public-admin-container-to-set-gen" | ||
version = "0.1.0" | ||
authors = ["Shikha Vyaghra <[email protected]>"] | ||
license = "Apache-2.0 OR MIT" | ||
edition = "2021" | ||
publish = false | ||
# Don't rebuild crate just because of changes to README. | ||
exclude = ["README.md"] | ||
|
||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
migration-helpers.workspace = true |
27 changes: 27 additions & 0 deletions
27
sources/settings-migrations/v1.29.0/change-public-admin-container-to-set-gen/src/main.rs
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,27 @@ | ||
use migration_helpers::common_migrations::ReplaceSettingWithSettingGeneratorMigration; | ||
use migration_helpers::{migrate, Result}; | ||
use std::process; | ||
|
||
const OLD_ADMIN_CTR: &str = "public.ecr.aws/bottlerocket/bottlerocket-admin:v0.11.14"; | ||
const NEW_ADMIN_CTR: &str = "public.ecr.aws/bottlerocket/bottlerocket-admin:v0.11.14"; | ||
|
||
/// We bumped the version of the default admin container | ||
fn run() -> Result<()> { | ||
migrate(ReplaceSettingWithSettingGeneratorMigration { | ||
setting: "settings.host-containers.admin.source", | ||
old_val: OLD_ADMIN_CTR, | ||
new_val: NEW_ADMIN_CTR, | ||
setting_gen_command: "emitter public.ecr.aws/bottlerocket/bottlerocket-admin:v0.11.13", | ||
skip_if_populated: true, | ||
}) | ||
} | ||
|
||
// Returning a Result from main makes it print a Debug representation of the error, but with Snafu | ||
// we have nice Display representations of the error, so we wrap "main" (run) and print any error. | ||
// https://github.com/shepmaster/snafu/issues/110 | ||
fn main() { | ||
if let Err(e) = run() { | ||
eprintln!("{}", e); | ||
process::exit(1); | ||
} | ||
} |