File tree Expand file tree Collapse file tree 4 files changed +5
-7
lines changed
Expand file tree Collapse file tree 4 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ members = ["fault-cli", "fault-ebpf-programs"]
44default-members = [" fault-cli" ]
55
66[workspace .package ]
7- version = " 0.15.0 "
7+ version = " 0.15.1 "
88edition = " 2024"
99rust-version = " 1.85"
1010license-file = " LICENSE"
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ?;
You can’t perform that action at this time.
0 commit comments