Skip to content

Commit 69c7e3f

Browse files
committed
fix path
Signed-off-by: Sylvain Hellegouarch <[email protected]>
1 parent e7018f4 commit 69c7e3f

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@
22

33
## Changed
44

5-
- Fix a variety of minor bugs with LLM fault injection
6-
- Better SSE support
7-
5+
- Fix ghcr repository URL

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ members = ["fault-cli", "fault-ebpf-programs"]
44
default-members = ["fault-cli"]
55

66
[workspace.package]
7-
version = "0.15.0"
7+
version = "0.15.1"
88
edition = "2024"
99
rust-version = "1.85"
1010
license-file = "LICENSE"

fault-cli/src/cli.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1395,7 +1395,7 @@ pub struct FaultInjectionKubernetesConfig {
13951395
long,
13961396
help = "Container image performing the fault.",
13971397
env = "FAULT_INJECTION_K8S_IMAGE",
1398-
default_value = "ghcr.io/rebound-how/fault:latest"
1398+
default_value = "ghcr.io/fault-project/fault-cli:latest"
13991399
)]
14001400
pub image: String,
14011401

@@ -1448,7 +1448,7 @@ pub struct FaultInjectionAWSConfig {
14481448
long,
14491449
help = "Container image performing the fault.",
14501450
env = "FAULT_INJECTION_AWS_IMAGE",
1451-
default_value = "ghcr.io/rebound-how/fault:latest"
1451+
default_value = "ghcr.io/fault-project/fault-cli:latest"
14521452
)]
14531453
pub image: String,
14541454

fault-cli/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1065,7 +1065,7 @@ async fn run_scenario_command(
10651065
&mut inject::k8s::KubernetesPlatform::new_proxy(
10661066
&ns,
10671067
&service,
1068-
&image.clone().unwrap_or("ghcr.io/rebound-how/fault:latest".to_string()),
1068+
&image.clone().unwrap_or("ghcr.io/fault-project/fault-cli:latest".to_string()),
10691069
&api_address,
10701070
fault_settings
10711071
).await?;

0 commit comments

Comments
 (0)