Skip to content

Commit

Permalink
fix: set default storage class name to "standard"
Browse files Browse the repository at this point in the history
  • Loading branch information
wangeguo committed Feb 24, 2024
1 parent 17bb51e commit 81a07d7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ AMP_NATS_URL=nats://amp-nats.amp-system.svc:4222
# The workspace path.
AMP_WORKSPACE=/workspace

# The storage class name. The default is `local-path` on k3s.
AMP_STORAGE_CLASS_NAME=local-path
# The storage class name. The default is `standard`.
AMP_STORAGE_CLASS_NAME=standard
16 changes: 8 additions & 8 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.8.20"
version = "0.8.21"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/amphitheatre-app/amphitheatre"
Expand Down
2 changes: 1 addition & 1 deletion controllers/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ pub struct Config {
pub nats_url: String,

/// The storage class name.
#[clap(long, env = "AMP_STORAGE_CLASS_NAME")]
#[clap(long, env = "AMP_STORAGE_CLASS_NAME", default_value = "standard")]
pub storage_class_name: String,
}

0 comments on commit 81a07d7

Please sign in to comment.