2024-12-22 20:56:52 -03:00
|
|
|
use gb_testing::chaos::ChaosTest;
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn test_kubernetes_chaos() -> anyhow::Result<()> {
|
2025-03-11 09:42:13 -03:00
|
|
|
let chaos_test = ChaosTest::new().await?;
|
2024-12-22 20:56:52 -03:00
|
|
|
|
2025-03-09 22:35:57 -03:00
|
|
|
|
2024-12-22 20:56:52 -03:00
|
|
|
chaos_test.network_partition().await?;
|
|
|
|
chaos_test.resource_exhaustion().await?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|