Skip to content
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

Update the host containers for 1.20.0 #3947

Merged
merged 4 commits into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Release.toml
Original file line number Diff line number Diff line change
Expand Up @@ -307,4 +307,8 @@ version = "1.20.0"
"migrate_v1.20.0_static-pods-services-cfg-v0-1-0.lz4",
"migrate_v1.20.0_container-runtime-nvidia.lz4",
"migrate_v1.20.0_container-runtime-metadata-nvidia.lz4",
"migrate_v1.20.0_aws-admin-container-v0-11-8.lz4",
"migrate_v1.20.0_public-admin-container-v0-11-8.lz4",
"migrate_v1.20.0_aws-control-container-v0-7-12.lz4",
"migrate_v1.20.0_public-control-container-v0-7-12.lz4",
]
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 @@ -86,6 +86,10 @@ members = [
"api/migration/migrations/v1.19.5/public-admin-container-v0-11-7",
"api/migration/migrations/v1.20.0/container-runtime-nvidia",
"api/migration/migrations/v1.20.0/container-runtime-metadata-nvidia",
"api/migration/migrations/v1.20.0/aws-admin-container-v0-11-8",
"api/migration/migrations/v1.20.0/public-admin-container-v0-11-8",
"api/migration/migrations/v1.20.0/aws-control-container-v0-7-12",
"api/migration/migrations/v1.20.0/public-control-container-v0-7-12",

"bloodhound",

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[package]
name = "aws-admin-container-v0-11-8"
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 = { path = "../../../migration-helpers", version = "0.1.0"}

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.7'";
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.8'";

/// 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,16 @@
[package]
name = "aws-control-container-v0-7-12"
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 = { path = "../../../migration-helpers", version = "0.1.0"}

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.11'";
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.12'";

/// 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,16 @@
[package]
name = "public-admin-container-v0-11-8"
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 = { path = "../../../migration-helpers", version = "0.1.0"}

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.7";
const NEW_ADMIN_CTR_SOURCE_VAL: &str = "public.ecr.aws/bottlerocket/bottlerocket-admin:v0.11.8";

/// 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,16 @@
[package]
name = "public-control-container-v0-7-12"
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 = { path = "../../../migration-helpers", version = "0.1.0"}

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.11";
const NEW_CONTROL_CTR_SOURCE_VAL: &str = "public.ecr.aws/bottlerocket/bottlerocket-control:v0.7.12";

/// 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/models/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.7'"
setting-generator = "schnauzer-v2 render --requires 'aws@v1(helpers=[ecr-prefix])' --template '{{ ecr-prefix settings.aws.region }}/bottlerocket-admin:v0.11.8'"

[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.11'"
setting-generator = "schnauzer-v2 render --requires 'aws@v1(helpers=[ecr-prefix])' --template '{{ ecr-prefix settings.aws.region }}/bottlerocket-control:v0.7.12'"
4 changes: 2 additions & 2 deletions sources/models/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.7"
source = "public.ecr.aws/bottlerocket/bottlerocket-admin:v0.11.8"

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