feat: add replicas
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-11-17 16:02:39 +01:00
parent 1af78da2a2
commit 05d33f1fab
9 changed files with 43 additions and 72 deletions

View File

@@ -68,17 +68,8 @@ async fn with_cuddle_vars() -> anyhow::Result<()> {
}
#[tokio::test]
async fn with_actual_deployment() -> anyhow::Result<()> {
let current_dir = std::env::current_dir()?.join("tests/with_cuddle_vars");
run_test_with_components(
"with_actual_deployment",
vec![
CuddleVars::new(&current_dir).await?.into_component(),
ClusterVars::default().into_component(),
],
)
.await?;
async fn with_cluster_vars() -> anyhow::Result<()> {
run_test_with_components("with_cluster_vars", vec![ClusterVars::default()]).await?;
Ok(())
}