diff --git a/Release.toml b/Release.toml index e744f9ccc32..0618691614b 100644 --- a/Release.toml +++ b/Release.toml @@ -339,4 +339,6 @@ version = "1.22.0" "(1.21.1, 1.22.0)" = [ "migrate_v1.22.0_aws-admin-container-v0-11-11.lz4", "migrate_v1.22.0_public-admin-container-v0-11-11.lz4", + "migrate_v1.22.0_aws-control-container-v0-7-15.lz4", + "migrate_v1.22.0_public-control-container-v0-7-15.lz4", ] diff --git a/sources/Cargo.lock b/sources/Cargo.lock index b283f78f8cd..2612ba4c78d 100644 --- a/sources/Cargo.lock +++ b/sources/Cargo.lock @@ -306,6 +306,13 @@ dependencies = [ "migration-helpers", ] +[[package]] +name = "aws-control-container-v0-7-15" +version = "0.1.0" +dependencies = [ + "migration-helpers", +] + [[package]] name = "backtrace" version = "0.3.69" @@ -1662,6 +1669,13 @@ dependencies = [ "migration-helpers", ] +[[package]] +name = "public-control-container-v0-7-15" +version = "0.1.0" +dependencies = [ + "migration-helpers", +] + [[package]] name = "quote" version = "1.0.36" diff --git a/sources/Cargo.toml b/sources/Cargo.toml index 3c193ac008d..497ddfb87e8 100644 --- a/sources/Cargo.toml +++ b/sources/Cargo.toml @@ -47,6 +47,8 @@ members = [ "settings-migrations/v1.21.1/public-control-container-v0-7-14", "settings-migrations/v1.22.0/aws-admin-container-v0-11-11", "settings-migrations/v1.22.0/public-admin-container-v0-11-11", + "settings-migrations/v1.22.0/aws-control-container-v0-7-15", + "settings-migrations/v1.22.0/public-control-container-v0-7-15", "settings-plugins/aws-dev", "settings-plugins/aws-ecs-1", diff --git a/sources/settings-migrations/v1.22.0/aws-control-container-v0-7-15/Cargo.toml b/sources/settings-migrations/v1.22.0/aws-control-container-v0-7-15/Cargo.toml new file mode 100644 index 00000000000..2d9e942d2ce --- /dev/null +++ b/sources/settings-migrations/v1.22.0/aws-control-container-v0-7-15/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "aws-control-container-v0-7-15" +version = "0.1.0" +authors = ["Kyle Sessions "] +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 diff --git a/sources/settings-migrations/v1.22.0/aws-control-container-v0-7-15/src/main.rs b/sources/settings-migrations/v1.22.0/aws-control-container-v0-7-15/src/main.rs new file mode 100644 index 00000000000..1f8a4e4d198 --- /dev/null +++ b/sources/settings-migrations/v1.22.0/aws-control-container-v0-7-15/src/main.rs @@ -0,0 +1,27 @@ +use migration_helpers::common_migrations::ReplaceSchnauzerMigration; +use migration_helpers::{migrate, Result}; +use std::process; + +const OLD_CONTROL_CTR_CMDLINE: &str = + "schnauzer-v2 render --requires 'aws@v1(helpers=[ecr-prefix])' --template '{{ ecr-prefix settings.aws.region }}/bottlerocket-control:v0.7.14'"; +const NEW_CONTROL_CTR_CMDLINE: &str = + "schnauzer-v2 render --requires 'aws@v1(helpers=[ecr-prefix])' --template '{{ ecr-prefix settings.aws.region }}/bottlerocket-control:v0.7.15'"; + +/// We bumped the version of the default control container +fn run() -> Result<()> { + migrate(ReplaceSchnauzerMigration { + setting: "settings.host-containers.control.source", + old_schnauzer_cmdline: OLD_CONTROL_CTR_CMDLINE, + new_schnauzer_cmdline: NEW_CONTROL_CTR_CMDLINE, + }) +} + +// 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); + } +} diff --git a/sources/settings-migrations/v1.22.0/public-control-container-v0-7-15/Cargo.toml b/sources/settings-migrations/v1.22.0/public-control-container-v0-7-15/Cargo.toml new file mode 100644 index 00000000000..7241d479df2 --- /dev/null +++ b/sources/settings-migrations/v1.22.0/public-control-container-v0-7-15/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "public-control-container-v0-7-15" +version = "0.1.0" +authors = ["Kyle Sessions "] +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 diff --git a/sources/settings-migrations/v1.22.0/public-control-container-v0-7-15/src/main.rs b/sources/settings-migrations/v1.22.0/public-control-container-v0-7-15/src/main.rs new file mode 100644 index 00000000000..edc951a4a37 --- /dev/null +++ b/sources/settings-migrations/v1.22.0/public-control-container-v0-7-15/src/main.rs @@ -0,0 +1,25 @@ +use migration_helpers::common_migrations::ReplaceStringMigration; +use migration_helpers::{migrate, Result}; +use std::process; + +const OLD_CONTROL_CTR_SOURCE_VAL: &str = "public.ecr.aws/bottlerocket/bottlerocket-control:v0.7.14"; +const NEW_CONTROL_CTR_SOURCE_VAL: &str = "public.ecr.aws/bottlerocket/bottlerocket-control:v0.7.15"; + +/// We bumped the version of the default control container +fn run() -> Result<()> { + migrate(ReplaceStringMigration { + setting: "settings.host-containers.control.source", + old_val: OLD_CONTROL_CTR_SOURCE_VAL, + new_val: NEW_CONTROL_CTR_SOURCE_VAL, + }) +} + +// 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); + } +}