summaryrefslogtreecommitdiff
path: root/pkg/machine/fcos.go
diff options
context:
space:
mode:
authorAshley Cui <acui@redhat.com>2021-09-22 14:38:24 -0400
committerAshley Cui <acui@redhat.com>2021-09-22 14:38:24 -0400
commitf5f95d722fac04bbc2c5082ea430c9eb1f0eeade (patch)
tree00243f1534c8eb41df0d6f7551ca0c556529301c /pkg/machine/fcos.go
parentcd7b48198c38c5028540e85dc72dd3406f4318f0 (diff)
downloadpodman-f5f95d722fac04bbc2c5082ea430c9eb1f0eeade.tar.gz
podman-f5f95d722fac04bbc2c5082ea430c9eb1f0eeade.tar.bz2
podman-f5f95d722fac04bbc2c5082ea430c9eb1f0eeade.zip
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 <acui@redhat.com>
Diffstat (limited to 'pkg/machine/fcos.go')
-rw-r--r--pkg/machine/fcos.go2
1 files changed, 2 insertions, 0 deletions
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