From f5f95d722fac04bbc2c5082ea430c9eb1f0eeade Mon Sep 17 00:00:00 2001 From: Ashley Cui Date: Wed, 22 Sep 2021 14:38:24 -0400 Subject: Fix machine image Make sure setting machine image to `testing` pulls down the testing stream, and not the next stream Signed-off-by: Ashley Cui --- pkg/machine/fcos.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkg/machine/fcos.go') diff --git a/pkg/machine/fcos.go b/pkg/machine/fcos.go index cfcadeb02..99197ac0e 100644 --- a/pkg/machine/fcos.go +++ b/pkg/machine/fcos.go @@ -139,6 +139,8 @@ func getFCOSDownload(imageStream string) (*fcosDownloadInfo, error) { ) switch imageStream { case "testing", "": + streamType = fedoracoreos.StreamTesting + case "next": streamType = fedoracoreos.StreamNext case "stable": streamType = fedoracoreos.StreamStable -- cgit v1.2.3-54-g00ecf