-
Notifications
You must be signed in to change notification settings - Fork 787
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
Pick default OCI Runtime from containers.conf #2929
Pick default OCI Runtime from containers.conf #2929
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: rhatdan 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 |
Currently we have a weird situation where the user sets the default runtime in his containers.conf for podman but Buildah is still falling back to use runc because it was hard coded as the default for Buildah. I would like to remove this default, but that would theoretically break the API promise of Buildah. This should fix containers/podman#8893 Signed-off-by: Daniel J Walsh <[email protected]>
@containers/podman-maintainers PTAL |
buildah.go
Outdated
@@ -28,7 +28,7 @@ const ( | |||
Package = "buildah" | |||
// Version for the Package. Bump version in contrib/rpm/buildah.spec | |||
// too. | |||
Version = "1.19.2" | |||
Version = "1.19.3" |
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.
you need to bump the contrib/rpm/buildah.spec too, and it would be good to update changelog.txt and CHANGELOG.md while you're at it.
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.
Ok I jumped the gun on this release, since there is at least one more thing we want to back port. Removing the release and only adding the cherry-pick
Tests are unhappy, I think due to the missing verison in the spec. Beyond that, I really much prefer having the Buildah version bump in their own PR, then any cherry picks in a separate. That way you can more easily find the cherrypick PR in GitHub's PR list. |
LGTM |
Cherry-pick "Pick default OCI Runtime from containers.conf"