Skip to content
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

Synchronise 2024.1 with upstream #616

Merged
merged 5 commits into from
Sep 16, 2024
Merged

Commits on Aug 21, 2024

  1. Fix issue with Swift Recon middleware

    Follow-up on I343d8f45a78ebc3c11ed0c68fe8bec24f9ea7929
    
    According the documentation [1] we forgot to share statistics data
    for swift-account-server and swift-container-server. This change will
    fix the issue.
    
    1. https://docs.openstack.org/swift/latest/admin_guide.html#cluster-telemetry-and-monitoring
    
    Closes-Bug: #1941611
    Change-Id: Ib9afd84cac1fcbd96f98b4720ea9c6503bbdb124
    Signed-off-by: Maksim Malchuk <maksim.malchuk@gmail.com>
    (cherry picked from commit 77bd2af)
    mmalchuk committed Aug 21, 2024
    Configuration menu
    Copy the full SHA
    6876041 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2024

  1. Add REQUESTS_CA_BUNDLE to kolla-toolbox container

    This patch adds REQUESTS_CA_BUNDLE as it's described
    in requests documentation [1].
    
    This is needed because some ansible modules inside uses
    python request library and some users of course using
    their own CAs.
    
    [1] https://requests.readthedocs.io/en/latest/user/advanced/#ssl-cert-verification
    
    Closes-Bug: #1967132
    
    Change-Id: I901c2bc8ac477f15d2833e68566b19e437f4b6d1
    (cherry picked from commit 366a461)
    keuko authored and artificial-intelligence committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    2e31fbd View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2024

  1. Configuration menu
    Copy the full SHA
    b60b13c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a711c35 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2024

  1. Separate outputs of kolla_toolbox inner module

    Inner modules called by the kolla_toolbox module were returning stdout
    and stderr as a single output object. This could break JSON parsing if
    any data was present in stderr, for example warnings such as:
    
        [WARNING]: Collection ansible.posix does not support Ansible version 2.14.17
    
    Fix by using demux=True to separate the two streams. The stderr content
    is logged as it could be useful for troubleshooting or catching
    deprecation notices.
    
    Depends-On: https://review.opendev.org/c/openstack/kolla-ansible/+/929294
    
    Change-Id: Iad0476d4511f28c837794352c9a3e2f47113d9a1
    Closes-Bug: #2080544
    (cherry picked from commit 5407662)
    priteau committed Sep 13, 2024
    Configuration menu
    Copy the full SHA
    9e8d8b6 View commit details
    Browse the repository at this point in the history