Skip to content
This repository was archived by the owner on Feb 16, 2024. It is now read-only.

Commit c542ab3

Browse files
authored
Merge pull request #234 from stackabletech/fix-operator-helm-repo
fix: Use stable helm repo for operators ending with "-dev"
2 parents 2b8da8f + 31bcc16 commit c542ab3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/operator.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,7 @@ impl Operator {
324324
let helm_repo_name = match &self.version {
325325
None => "stackable-dev",
326326
Some(version) if version.ends_with("-nightly") => "stackable-dev",
327+
Some(version) if version.ends_with("-dev") => "stackable-dev",
327328
Some(version) if version.contains("-pr") => "stackable-test",
328329
Some(_) => "stackable-stable",
329330
};

0 commit comments

Comments
 (0)