
This change enables building the following stx-openstack images with WSGI within the Debian build framework: - stx-aodh - stx-ironic - stx-horizon - stx-keystone - stx-placement - stx-gnocchi They are now based on stx-debian and following the new convention for StarlingX images. Test Plan: PASS - Build images PASS - Manually upload the built images to a system, use helm-override to change their respective containers images and reapply stx-openstack PASS - Ensure affected pods successfully start and are running PASS - Ensure affected pods liveness and readiness probes are healthy Story: 2010072 Task: 47089 Depends-On: https://review.opendev.org/c/starlingx/root/+/871314 Depends-On: https://review.opendev.org/c/starlingx/root/+/871638 Depends-On: https://review.opendev.org/c/starlingx/root/+/871705 Signed-off-by: Luan Nunes Utimura <LuanNunes.Utimura@windriver.com> Change-Id: I18bcb51f2826fd0382370f5236db4b5954ac1b53
15 lines
771 B
Plaintext
15 lines
771 B
Plaintext
BUILDER=loci
|
|
LABEL=stx-keystone
|
|
PROJECT=keystone
|
|
PROJECT_REPO=https://opendev.org/openstack/keystone.git
|
|
PROJECT_REF=stable/ussuri
|
|
PIP_PACKAGES="python-openstackclient ldap ldappool python-ldap pylint"
|
|
DIST_REPOS="OS"
|
|
PROFILES="fluent apache"
|
|
CUSTOMIZATION="\
|
|
ln -s /etc/apache2/mods-available/wsgi.load /etc/apache2/mods-enabled/wsgi.load && \
|
|
ln -s /etc/apache2/mods-available/wsgi.conf /etc/apache2/mods-enabled/wsgi.conf && \
|
|
sed -i \"s/getattr(base64, 'decodebytes', base64.decodestring)/getattr(base64, 'decodebytes')/g\" /var/lib/openstack/lib/python3.9/site-packages/saml2/saml.py && \
|
|
sed -i \"s/getattr(base64, 'encodebytes', base64.encodestring)/getattr(base64, 'encodebytes')/g\" /var/lib/openstack/lib/python3.9/site-packages/saml2/saml.py
|
|
"
|