Skip to content

Commit 99e4849

Browse files
Zuulopenstack-gerrit
authored andcommitted
Merge "Add boto3 as s3 dependency for Glance container" into stable/victoria
2 parents 251a245 + 1aba4e7 commit 99e4849

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

docker/glance/glance-base/Dockerfile.j2

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
1515
{% if base_package_type == 'rpm' %}
1616
{% set glance_base_packages = [
1717
'openstack-glance',
18+
'python3-boto3',
1819
'python3-oslo-vmware',
1920
'python3-rados',
2021
'python3-rbd'
2122
] %}
2223
{% elif base_package_type == 'deb' %}
2324
{% set glance_base_packages = [
2425
'glance',
26+
'python3-boto3',
2527
'python3-os-brick',
2628
'python3-oslo.vmware',
2729
'python3-rados',
@@ -55,7 +57,7 @@ ADD glance-base-archive /glance-base-source
5557

5658
{% set glance_base_pip_packages = [
5759
'/glance',
58-
'glance_store[cinder,vmware,swift]'
60+
'glance_store[cinder,vmware,swift,s3]'
5961
] %}
6062

6163
# add missing rootwrap config present in glance_store repo
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
fixes:
3+
- |
4+
Fixes missing boto3 library required by glance_store.
5+
`LP#1884259 <https://launchpad.net/bugs/1884259>`__

0 commit comments

Comments
 (0)