packing and uploading registry

Partially-Implements: blueprint pack-registry
Co-Authored-By: Jeffrey Zhang <jeffrey.zhang@99cloud.net>
Change-Id: I6816c6d3fc2f4224553f8a22e2ebb87e8616db37
This commit is contained in:
Michal (inc0) Jastrzebski 2016-11-29 21:56:35 +00:00 committed by Jeffrey Zhang
parent 12bea3f9f6
commit cef39561ac
2 changed files with 19 additions and 0 deletions

View File

@ -75,7 +75,21 @@ function collect_logs {
set -o errexit
}
function pack_registry {
sudo mkdir "images"
FILENAME=${BASE_DISTRO}-${INSTALL_TYPE}-${ZUUL_BRANCH}-registry.tar.gz
sudo docker stop registry
sudo tar -zcf "images/$FILENAME" -C /tmp/kolla_registry .
sudo docker start registry
sudo chmod 755 -R images
}
trap collect_logs EXIT
tools/setup_gate.sh
tox -e $ACTION-$BASE_DISTRO-$INSTALL_TYPE
if [[ -n $PACK_REGISTRY ]] && [[ $ACTION == "build" ]]; then
pack_registry
fi

View File

@ -44,6 +44,11 @@ EOF
# NOTE(Jeffrey4l): use different a docker namespace name in case it pull image from hub.docker.io when deplying
sed -i 's|^#namespace.*|namespace = lokolla|' /etc/kolla/kolla-build.conf
if [[ -n "${PACK_REGISTRY}" ]] && [[ $ACTION == "build" ]]; then
sed -i 's|^#registry.*|registry = 127.0.0.1:4000|' /etc/kolla/kolla-build.conf
sed -i 's|^#push.*|push = true|' /etc/kolla/kolla-build.conf
fi
if [[ "${DISTRO}" == "Debian" ]]; then
# Infra does not sign their mirrors so we ignore gpg signing in the gate
echo "RUN echo 'APT::Get::AllowUnauthenticated \"true\";' > /etc/apt/apt.conf" | sudo tee -a /etc/kolla/header