Skip to content

Commit

Permalink
Merge pull request #2739 from jpculp/admin-0.9.4-control-0.7.0
Browse files Browse the repository at this point in the history
Bump host containers
  • Loading branch information
jpculp authored Jan 18, 2023
2 parents 7b81d23 + ee66902 commit 0b2ef18
Show file tree
Hide file tree
Showing 13 changed files with 200 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Release.toml
Original file line number Diff line number Diff line change
Expand Up @@ -177,4 +177,8 @@ version = "1.12.0"
"migrate_v1.12.0_add-k8s-autoscaling-warm-pool-setting-metadata.lz4",
"migrate_v1.12.0_oci-defaults-setting.lz4",
"migrate_v1.12.0_oci-defaults-setting-metadata.lz4",
"migrate_v1.12.0_aws-admin-container-v0-9-4.lz4",
"migrate_v1.12.0_public-admin-container-v0-9-4.lz4",
"migrate_v1.12.0_aws-control-container-v0-7-0.lz4",
"migrate_v1.12.0_public-control-container-v0-7-0.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 @@ -31,6 +31,10 @@ members = [
"api/migration/migrations/v1.12.0/add-k8s-autoscaling-warm-pool-setting-metadata",
"api/migration/migrations/v1.12.0/oci-defaults-setting",
"api/migration/migrations/v1.12.0/oci-defaults-setting-metadata",
"api/migration/migrations/v1.12.0/aws-admin-container-v0-9-4",
"api/migration/migrations/v1.12.0/public-admin-container-v0-9-4",
"api/migration/migrations/v1.12.0/aws-control-container-v0-7-0",
"api/migration/migrations/v1.12.0/public-control-container-v0-7-0",

"bottlerocket-release",

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[package]
name = "aws-admin-container-v0-9-4"
version = "0.1.0"
authors = ["Patrick J.P. Culp <jpculp@amazon.com>"]
license = "Apache-2.0 OR MIT"
edition = "2018"
publish = false
# Don't rebuild crate just because of changes to README.
exclude = ["README.md"]

[dependencies]
migration-helpers = { path = "../../../migration-helpers", version = "0.1.0"}
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#![deny(rust_2018_idioms)]

use migration_helpers::common_migrations::ReplaceTemplateMigration;
use migration_helpers::{migrate, Result};
use std::process;

const OLD_ADMIN_CTR_TEMPLATE: &str =
"{{ ecr-prefix settings.aws.region }}/bottlerocket-admin:v0.9.3";
const NEW_ADMIN_CTR_TEMPLATE: &str =
"{{ ecr-prefix settings.aws.region }}/bottlerocket-admin:v0.9.4";

/// We bumped the version of the default admin container
fn run() -> Result<()> {
migrate(ReplaceTemplateMigration {
setting: "settings.host-containers.admin.source",
old_template: OLD_ADMIN_CTR_TEMPLATE,
new_template: NEW_ADMIN_CTR_TEMPLATE,
})
}

// 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,12 @@
[package]
name = "aws-control-container-v0-7-0"
version = "0.1.0"
authors = ["Patrick J.P. Culp <jpculp@amazon.com>"]
license = "Apache-2.0 OR MIT"
edition = "2018"
publish = false
# Don't rebuild crate just because of changes to README.
exclude = ["README.md"]

[dependencies]
migration-helpers = { path = "../../../migration-helpers", version = "0.1.0"}
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#![deny(rust_2018_idioms)]

use migration_helpers::common_migrations::ReplaceTemplateMigration;
use migration_helpers::{migrate, Result};
use std::process;

const OLD_CONTROL_CTR_TEMPLATE: &str =
"{{ ecr-prefix settings.aws.region }}/bottlerocket-control:v0.6.4";
const NEW_CONTROL_CTR_TEMPLATE: &str =
"{{ ecr-prefix settings.aws.region }}/bottlerocket-control:v0.7.0";

/// We bumped the version of the default control container
fn run() -> Result<()> {
migrate(ReplaceTemplateMigration {
setting: "settings.host-containers.control.source",
old_template: OLD_CONTROL_CTR_TEMPLATE,
new_template: NEW_CONTROL_CTR_TEMPLATE,
})
}

// 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,12 @@
[package]
name = "public-admin-container-v0-9-4"
version = "0.1.0"
authors = ["Patrick J.P. Culp <jpculp@amazon.com>"]
license = "Apache-2.0 OR MIT"
edition = "2018"
publish = false
# Don't rebuild crate just because of changes to README.
exclude = ["README.md"]

[dependencies]
migration-helpers = { path = "../../../migration-helpers", version = "0.1.0"}
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#![deny(rust_2018_idioms)]

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

/// 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,12 @@
[package]
name = "public-control-container-v0-7-0"
version = "0.1.0"
authors = ["Patrick J.P. Culp <jpculp@amazon.com>"]
license = "Apache-2.0 OR MIT"
edition = "2018"
publish = false
# Don't rebuild crate just because of changes to README.
exclude = ["README.md"]

[dependencies]
migration-helpers = { path = "../../../migration-helpers", version = "0.1.0"}
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#![deny(rust_2018_idioms)]

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

/// 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 @@ -4,7 +4,7 @@ superpowered = true

[metadata.settings.host-containers.admin.source]
setting-generator = "schnauzer settings.host-containers.admin.source"
template = "{{ ecr-prefix settings.aws.region }}/bottlerocket-admin:v0.9.3"
template = "{{ ecr-prefix settings.aws.region }}/bottlerocket-admin:v0.9.4"

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

[metadata.settings.host-containers.control.source]
setting-generator = "schnauzer settings.host-containers.control.source"
template = "{{ ecr-prefix settings.aws.region }}/bottlerocket-control:v0.6.4"
template = "{{ ecr-prefix settings.aws.region }}/bottlerocket-control:v0.7.0"
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.9.3"
source = "public.ecr.aws/bottlerocket/bottlerocket-admin:v0.9.4"

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

0 comments on commit 0b2ef18

Please sign in to comment.