-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Support Azure DevOps resource containers for builds #11265
Comments
@Luap99 PTAL |
Adding this field should be simple but I am wondering how to query the supported drivers. |
@Luap99 volume plugins are masked under field |
@Luap99 They're just stored in containers.conf - https://github.com/containers/common/blob/main/pkg/config/config.go#L396 The map is name of plugin (what you want) to path of plugin socket - so iterating through and taking all the names should be sufficient. |
For docker compat include information about available volume, log and network drivers which should be listed under the plugins key. Fixes containers#11265 Signed-off-by: Paul Holzinger <[email protected]>
Thank you all and I'll watch the PR discussion and stay out of the way but I'm still active and watching the conversations. |
Is this a BUG REPORT or FEATURE REQUEST? (leave only one on its own line)
/kind bug
Description
Azure DevOps on self-hosted agents (RHEL8/Podman) cannot load containers defined in 'resources'.
It fails on this workflow command in the "Initialize Containers" step
/usr/bin/docker info -f "{{range .Plugins.Network}}{{println .}}{{end}}"
This fails because there is no .Plugins.Network in
podman info
. The same on docker withdocker info
produces a section that is missing inpodman info
:I'm using 'podman-docker' to look like 'docker' to the Azure DevOps agent.
Steps to reproduce the issue:
Describe the results you received:
Describe the results you expected:
With regular docker,
docker info
works fine:Additional information you deem important (e.g. issue happens only occasionally):
Output of
podman version
:Output of
podman info --debug
:Package info (e.g. output of
rpm -q podman
orapt list podman
):Have you tested with the latest version of Podman and have you checked the Podman Troubleshooting Guide? (https://github.com/containers/podman/blob/master/troubleshooting.md)
No and yes. I'm using the distribution package for RHEL8 but I have checked the Podman Troubleshooting Guide.
Additional environment details (AWS, VirtualBox, physical, etc.):
VMWare virtual machine
The text was updated successfully, but these errors were encountered: