From a2694d31479beb57336af2d7880db9722a4be582 Mon Sep 17 00:00:00 2001 From: James Denton Date: Thu, 23 Dec 2021 21:13:19 -0600 Subject: [PATCH] Add boto3 module for s3 backend This patch adds the boto3 python module, which is a dependency for the s3 glance backend. Closes-Bug: #1955683 Change-Id: I5f5a921d8a08d5dfb09e2bca71d49c85115a60aa --- defaults/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/defaults/main.yml b/defaults/main.yml index e2105c8e..e3a875aa 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -254,6 +254,7 @@ glance_pip_packages: - python-swiftclient - systemd-python - warlock + - "{{ ('s3' in _glance_available_stores) | ternary('boto3', '') }}" # Specific pip packages provided by the user glance_user_pip_packages: []