11f65c6c1d
This patch adds a way to patch files in a Docker image built by Kolla. This is very useful for several reasons, specifically: - Custom modifications - The stable branch of some library has a fix but no pip package has been released - Eliminates the need to package your own pip packages - Eliminates the need to invent your own versioning to prevent upstream versioning - Eliminates the need to manage a pip server - In other words, it eliminates the need to get a wheel into the image and install it manually using any method not previously mentioned It is also highly desirable because, although Kolla can replace the source for a service with a custom URL for a tarball or its own Git repo, it cannot do this for dependencies pulled from pip. I would also like to point out that this is a feature with its own code path and works only if the user "inserts" a patch into the folder patches/docker-image/something.patch and creates an analogous series file for patch source code. Simply said, this code will never interfere with the upstream build process since this feature is not intended for use in upstream. It is rather meant for downstream users who know what they are doing. Now they just have an option to patch their images. Everything works on all layers of the Docker image and stores a report of applied patches which can then be seen in /etc. This mechanism is similar as debian patch quilt. Change-Id: I61d0790c5d4d070b7ea9e8c99c0a76ff5d22bf9d
56 lines
2.0 KiB
Bash
Executable File
56 lines
2.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# This script works as debian quilt patch.
|
|
# So, patch files included in /patches/series
|
|
# are applied and information what was applied
|
|
# is stored in /etc/kolla/patched.
|
|
#
|
|
# No more, no less :)
|
|
|
|
cd /
|
|
|
|
# If exist /patches/series
|
|
# let's try to apply patches
|
|
if [ -e "/patches/series" ]; then
|
|
# If there is /patches/series.applied
|
|
# then it means previous run already applied
|
|
# some patches - from another intermediate container
|
|
#
|
|
# So, let's add patches again to /patches/series
|
|
# and let's script to handle it
|
|
if [ -e "/patches/series.applied" ]; then
|
|
grep -v '^#' /patches/series.applied > /tmp/series.tmp
|
|
grep -v '^#' /patches/series >> /tmp/series.tmp
|
|
rm -f /patches/series
|
|
mv /tmp/series.tmp /patches/series
|
|
fi
|
|
touch /etc/kolla/patched
|
|
for patchfile in $(grep -v '^#' /patches/series); do
|
|
# If patch is not applied, try to apply it, otherwise
|
|
# inform user that patchfile is already applied
|
|
if ! grep -q "$patchfile" /etc/kolla/patched; then
|
|
echo "[i] Applying /patches/${patchfile}"
|
|
patch -p0 --fuzz=0 --ignore-whitespace < /patches/${i}/${patchfile}
|
|
# If apply patch was successful inform user,
|
|
# otherwise fail build process and inform user
|
|
# to check/fix patch
|
|
if [ $? -eq 0 ]; then
|
|
echo "[i] Applied /patches/${patchfile}" >> /etc/kolla/patched
|
|
else
|
|
echo "[i] Patch /patches/${patchfile} failed, please fix your patchfiles."
|
|
exit 1
|
|
fi
|
|
else
|
|
echo "[i] /patches/${patchfile} already applied."
|
|
fi
|
|
done
|
|
# Ignore files which are commented and move
|
|
# to /patches/series.applied as /patch/series
|
|
# can be potentially replaced by another files
|
|
# from different intermediate container
|
|
grep -v '^#' /patches/series > /patches/series.applied
|
|
rm -f /patches/series
|
|
else
|
|
echo "[i] No series file found, nothing to patch."
|
|
fi
|