We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Since facter 4.8.0 we getting unsupported container runtime 'openzve'
Problem origin here facter source
Support 'openvzve' as runtime again
see also fact for openvz in source code https://github.com/puppetlabs/facter/blob/8dfaabf794dab16267120e906002c8147a27ef8c/lib/facter/resolvers/open_vz.rb
The text was updated successfully, but these errors were encountered:
This is caused by 7bc38cc because if the container type is not recognized by the Container resolver, then it returns container_other
Container
container_other
facter/lib/facter/resolvers/containers.rb
Line 56 in 7bc38cc
However, the VirtualDetector calls the Container resolver
VirtualDetector
facter/lib/facter/util/facts/posix/virtual_detector.rb
Line 19 in 0656d9a
So container_other prevents it from falling back to other methods like check_open_vz
check_open_vz
Lines 11 to 12 in 0656d9a
We had the same issue with Illumox, see 31d32da
The Container resolver should ignore unknown container types so that VirtualDetector can try other methods
Sorry, something went wrong.
No branches or pull requests
Describe the Bug
Since facter 4.8.0 we getting unsupported container runtime 'openzve'
Problem origin here facter source
Expected Behavior
Support 'openvzve' as runtime again
Steps to Reproduce
[[email protected] resolvers]# facter virtual
[2024-12-19 11:11:27.557706 ] WARN Facter::Resolvers::Containers - Container runtime, '0ae2eb17-876d-46b1-a093-1ee716f7a75a', is unsupported, setting to, 'container_other'
container_other
Environment
Additional Context
see also fact for openvz in source code https://github.com/puppetlabs/facter/blob/8dfaabf794dab16267120e906002c8147a27ef8c/lib/facter/resolvers/open_vz.rb
The text was updated successfully, but these errors were encountered: