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

fix for issue #11863. Optimize Image Removal #7664

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

pemsith
Copy link

@pemsith pemsith commented Mar 7, 2025

Summary
This PR optimizes the removal of Ceph dashboard container images by replacing repetitive command module calls with a single shell script execution.

Changes Made
Replaced multiple ansible.builtin.command calls in a loop with a dynamically generated script.
The script is templated using Jinja2 (remove_images.sh.j2) to ensure variable substitution for image names.
The script is copied to the target host and executed in one step, reducing SSH overhead and improving efficiency.
Ensures compatibility with both Docker and Podman by passing container_binary dynamically.

Why This Change?
Reduces multiple SSH calls by executing a single script instead of looping through docker rmi commands in Ansible.
Enhances performance.

@guits
Copy link
Collaborator

guits commented Mar 19, 2025

@pemsith why not simply calling podman rmi <image1> <image2> <...> ?

Copy link

github-actions bot commented Apr 3, 2025

This pull request has been automatically marked as stale because it has not had recent activity. It will be closed in two weeks if no further activity occurs. Thank you for your contributions.

@github-actions github-actions bot added the stale label Apr 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants