diff --git a/internal/cloudapi/v2/handler.go b/internal/cloudapi/v2/handler.go index 82c336ab7..a6e7632b0 100644 --- a/internal/cloudapi/v2/handler.go +++ b/internal/cloudapi/v2/handler.go @@ -565,6 +565,8 @@ func (h *apiHandlers) PostCompose(ctx echo.Context) error { fallthrough case ImageTypesIotInstaller: fallthrough + case ImageTypesLiveInstaller: + fallthrough case ImageTypesEdgeCommit: fallthrough case ImageTypesIotCommit: @@ -783,6 +785,8 @@ func imageTypeFromApiImageType(it ImageTypes, arch distro.Arch) string { return "iot-installer" case ImageTypesIotRawImage: return "iot-raw-image" + case ImageTypesLiveInstaller: + return "live-installer" } return "" }