-
Notifications
You must be signed in to change notification settings - Fork 321
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
Fix docker
fact with recent version of docker
#897
Conversation
The `docker` nested fact is supposed to be conditionaly build if the docker client version is 1.13 or greater, as changed in #166. Unfortunately, the regexp is not working as expected, and future tweaks of the regexp did not fix it. Fix the regexp to match versions greater are equal to 1.13.*. Add a few unit tests to verify the outcome. Fixes #896
4e4ce92
to
ddb5092
Compare
After restarting the failing builds 8 times, it finally passed ✌️ |
Please merge this with the mainstream ASAP, as new docker versions aren't detected by the old regexp and therefore the module currently requires patching downstream before use. |
I can't set up a lower docker version on Ubuntu focal.
This configuration installs the latest 23.0.1 docker version. |
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.
LGTM
Thanks for you contribution! |
@vitargelo If you are still experiencing problems, please raise an issue in our Issues section. |
The
docker
nested fact is supposed to be conditionaly build if thedocker client version is 1.13 or greater, as changed in #166.
Unfortunately, the regexp is not working as expected, and future tweaks
of the regexp did not fix it.
Fix the regexp to match versions greater are equal to 1.13.*. Add a few
unit tests to verify the outcome.
Fixes #896