[202405] Compatibility fixes for docker-sonic-mgmt based on Ubuntu 24.04 (#21045)#813
Merged
wangxin merged 2 commits intoAzure:202405from Nov 19, 2025
Merged
[202405] Compatibility fixes for docker-sonic-mgmt based on Ubuntu 24.04 (#21045)#813wangxin merged 2 commits intoAzure:202405from
wangxin merged 2 commits intoAzure:202405from
Conversation
What is the motivation for this PR? This PR is to continue the effort made by @yutongzhang-microsoft in #18339 The current docker-sonic-mgmt image is based on Ubuntu 20.04 which is end of support now. PR sonic-net/sonic-buildimage#24306 upgraded the base image of docker-sonic-mgmt to Ubuntu 24.04. Together, version of most packages are upgraded too. The upgrade introduced lots of compatibility issues. This PR is to fix all the compatibility issues. All the fixes are backward compatible. The code change woks with both current and new docker-sonic-mgmt. How did you do it? Fix the snmp code caused by pysnmp upgrade. Fix json dump of ansible result caused by pytest-ansible upgrade. How did you verify/test it? Take advantage of the current sonic-mgmt PR testing. Verified that the code change works with new docker-sonic-mgmt in #20851 Verified that the code change works with the current docker-sonic-mgmt in this PR.
PR sonic-net/sonic-mgmt#21045 for fixing compatibility issues of docker-sonic-mgmt upgrade removed the hook for setting log levels of couple of loggers. The code for setting log level of ansible loggers is no longer needed after previous ansible upgrade a few years ago. However, setting log level for the 'dataplane' logger is still necessary. This change added back the code to set log level for the 'dataplane' logger to avoid unnessary logs when 'ptfadapter' is used in test script. Signed-off-by: Xin Wang <xiwang5@microsoft.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is to cherry-pick sonic-net/sonic-mgmt#21045
What is the motivation for this PR?
This PR is to continue the effort made by @yutongzhang-microsoft in #18339
The current docker-sonic-mgmt image is based on Ubuntu 20.04 which is end of support now. PR sonic-net/sonic-buildimage#24306 upgraded the base image of docker-sonic-mgmt to Ubuntu 24.04. Together, version of most packages are upgraded too. The upgrade introduced lots of compatibility issues. This PR is to fix all the compatibility issues.
All the fixes are backward compatible. The code change woks with both current and new docker-sonic-mgmt.
How did you do it?
Fix the snmp code caused by pysnmp upgrade.
Fix json dump of ansible result caused by pytest-ansible upgrade. How did you verify/test it?
Take advantage of the current sonic-mgmt PR testing. Verified that the code change works with new docker-sonic-mgmt in #20851 Verified that the code change works with the current docker-sonic-mgmt in this PR.