Skip to content

Commit

Permalink
Merge pull request #4171 from KCSesh/update-admin-0.11.11-control-0.7.15
Browse files Browse the repository at this point in the history
Update host containers for 1.22.0
  • Loading branch information
KCSesh committed Sep 3, 2024
2 parents 39f91d5 + b6430bd commit 8fb4129
Show file tree
Hide file tree
Showing 14 changed files with 208 additions and 6 deletions.
8 changes: 7 additions & 1 deletion Release.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "1.21.1"
version = "1.22.0"

[migrations]
"(0.3.1, 0.3.2)" = ["migrate_v0.3.2_admin-container-v0-5-0.lz4"]
Expand Down Expand Up @@ -336,3 +336,9 @@ version = "1.21.1"
"migrate_v1.21.1_aws-control-container-v0-7-14.lz4",
"migrate_v1.21.1_public-control-container-v0-7-14.lz4",
]
"(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",
]
2 changes: 1 addition & 1 deletion Twoliter.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
schema-version = 1
release-version = "1.21.1"
release-version = "1.22.0"

[vendor.bottlerocket]
registry = "public.ecr.aws/bottlerocket"
Expand Down
28 changes: 28 additions & 0 deletions sources/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions sources/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ members = [
"settings-migrations/v1.21.1/public-admin-container-v0-11-10",
"settings-migrations/v1.21.1/aws-control-container-v0-7-14",
"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",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "aws-admin-container-v0-11-11"
version = "0.1.0"
authors = ["Kyle Sessions <[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
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
use migration_helpers::common_migrations::ReplaceSchnauzerMigration;
use migration_helpers::{migrate, Result};
use std::process;

const OLD_ADMIN_CTR_CMDLINE: &str =
"schnauzer-v2 render --requires 'aws@v1(helpers=[ecr-prefix])' --template '{{ ecr-prefix settings.aws.region }}/bottlerocket-admin:v0.11.10'";
const NEW_ADMIN_CTR_CMDLINE: &str =
"schnauzer-v2 render --requires 'aws@v1(helpers=[ecr-prefix])' --template '{{ ecr-prefix settings.aws.region }}/bottlerocket-admin:v0.11.11'";

/// We bumped the version of the default admin container
fn run() -> Result<()> {
migrate(ReplaceSchnauzerMigration {
setting: "settings.host-containers.admin.source",
old_schnauzer_cmdline: OLD_ADMIN_CTR_CMDLINE,
new_schnauzer_cmdline: NEW_ADMIN_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);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "aws-control-container-v0-7-15"
version = "0.1.0"
authors = ["Kyle Sessions <[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
Original file line number Diff line number Diff line change
@@ -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);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "public-admin-container-v0-11-11"
version = "0.1.0"
authors = ["Kyle Sessions <[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
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
use migration_helpers::common_migrations::ReplaceStringMigration;
use migration_helpers::{migrate, Result};
use std::process;

const OLD_ADMIN_CTR_SOURCE_VAL: &str = "public.ecr.aws/bottlerocket/bottlerocket-admin:v0.11.10";
const NEW_ADMIN_CTR_SOURCE_VAL: &str = "public.ecr.aws/bottlerocket/bottlerocket-admin:v0.11.11";

/// We bumped the version of the default admin container
fn run() -> Result<()> {
migrate(ReplaceStringMigration {
setting: "settings.host-containers.admin.source",
old_val: OLD_ADMIN_CTR_SOURCE_VAL,
new_val: NEW_ADMIN_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);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "public-control-container-v0-7-15"
version = "0.1.0"
authors = ["Kyle Sessions <[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
Original file line number Diff line number Diff line change
@@ -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);
}
}
4 changes: 2 additions & 2 deletions sources/shared-defaults/aws-host-containers.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ enabled = false
superpowered = true

[metadata.settings.host-containers.admin.source]
setting-generator = "schnauzer-v2 render --requires 'aws@v1(helpers=[ecr-prefix])' --template '{{ ecr-prefix settings.aws.region }}/bottlerocket-admin:v0.11.10'"
setting-generator = "schnauzer-v2 render --requires 'aws@v1(helpers=[ecr-prefix])' --template '{{ ecr-prefix settings.aws.region }}/bottlerocket-admin:v0.11.11'"

[metadata.settings.host-containers.admin.user-data]
setting-generator = "shibaken generate-admin-userdata"
Expand All @@ -13,4 +13,4 @@ enabled = true
superpowered = false

[metadata.settings.host-containers.control.source]
setting-generator = "schnauzer-v2 render --requires 'aws@v1(helpers=[ecr-prefix])' --template '{{ ecr-prefix settings.aws.region }}/bottlerocket-control:v0.7.14'"
setting-generator = "schnauzer-v2 render --requires 'aws@v1(helpers=[ecr-prefix])' --template '{{ ecr-prefix settings.aws.region }}/bottlerocket-control:v0.7.15'"
4 changes: 2 additions & 2 deletions sources/shared-defaults/public-host-containers.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
[settings.host-containers.admin]
enabled = false
superpowered = true
source = "public.ecr.aws/bottlerocket/bottlerocket-admin:v0.11.10"
source = "public.ecr.aws/bottlerocket/bottlerocket-admin:v0.11.11"

[settings.host-containers.control]
enabled = false
superpowered = false
source = "public.ecr.aws/bottlerocket/bottlerocket-control:v0.7.14"
source = "public.ecr.aws/bottlerocket/bottlerocket-control:v0.7.15"

0 comments on commit 8fb4129

Please sign in to comment.