-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
change default machine image for windows #1603
change default machine image for windows #1603
Conversation
wsl no longer uses this field and for windows using hyperv, it should be set to "testing" like all other providers that use fcos as a base machine image. Signed-off-by: Brent Baude <[email protected]>
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: baude The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
LGTM |
LGTM |
/lgtm |
func getDefaultMachineImage() string { | ||
return "35" | ||
return "testing" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if all providers should return the same thing then this function should be removed from the _<os>.go
files and the default should just be dinfed once for eveything
Also the comment of this function is now wrong.
small refactoring for containers#1603 adn containers#1608 where we no longer have operating system differences. Signed-off-by: Brent Baude <[email protected]>
small refactoring for containers#1603 adn containers#1608 where we no longer have operating system differences. Signed-off-by: Brent Baude <[email protected]>
wsl no longer uses this field and for windows using hyperv, it should be set to "testing" like all other providers that use fcos as a base machine image.