diff --git a/src/operator.rs b/src/operator.rs index 43e11215..a33a85f9 100644 --- a/src/operator.rs +++ b/src/operator.rs @@ -324,6 +324,7 @@ impl Operator { let helm_repo_name = match &self.version { None => "stackable-dev", Some(version) if version.ends_with("-nightly") => "stackable-dev", + Some(version) if version.ends_with("-dev") => "stackable-dev", Some(version) if version.contains("-pr") => "stackable-test", Some(_) => "stackable-stable", };