We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2290935 commit 041ee76Copy full SHA for 041ee76
.werft/installer-tests.ts
@@ -11,7 +11,8 @@ const annotations: any = context.Annotations || {};
11
12
const testConfig: string = process.argv.length > 2 ? process.argv[2] : "STANDARD_K3S_TEST";
13
14
-const channel: string = annotations.channel || "unstable";
+// we can either provide the channel name of we randomly run tests against stable and unstable channels
15
+const channel: string = annotations.channel || randomize(["stable", "unstable"]);
16
const kotsApp: string = annotations.replicatedApp || "gitpod";
17
18
const version: string = annotations.version || "-";
0 commit comments