Skip to content

Commit

Permalink
migrations: Add migrations for configuration-files.kubelet-exec-start…
Browse files Browse the repository at this point in the history
…-conf
  • Loading branch information
Sparksssj committed Sep 19, 2024
1 parent 7ee2c94 commit 719dbc8
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 0 deletions.
7 changes: 7 additions & 0 deletions sources/Cargo.lock

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

1 change: 1 addition & 0 deletions sources/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ members = [
"settings-migrations/v1.23.0/nvidia-container-runtime-settings",
"settings-migrations/v1.23.0/kubelet-device-plugins-metadata",
"settings-migrations/v1.23.0/kubelet-device-plugins-settings",
"settings-migrations/v1.23.0/kubernetes-service-config",

"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 = "kubernetes-service-config"
version = "0.1.0"
authors = ["Sparks Song <[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_MODE: &str = "0600";
const NEW_MODE: &str = "0644";

/// We changed the permissions mode for kubelet-exec-start-conf
fn run() -> Result<()> {
migrate(ReplaceStringMigration {
setting: "configuration-files.kubelet-exec-start-conf.mode",
old_val: OLD_MODE,
new_val: NEW_MODE,
})
}

// 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);
}
}

0 comments on commit 719dbc8

Please sign in to comment.