Add option to OVERRIDE

Providing an OVERRIDE tarball allows any and everything about the image
to be customized *before* the initial commands are run. This will be
used in the gate and other CICD systems to change package sources as
well as configure options.

In infra specfically we will be disabling signature verification on the
packages and pointing the repos to use infra repos.

Regular building is 100% unaffected by this addition.

Change-Id: Idc571bbd01ba9b9fd0f18feee986009369296674
This commit is contained in:
Sam Yaple 2017-04-04 18:34:54 +00:00
parent 94b77daf44
commit 44a0b7ed10
6 changed files with 9 additions and 0 deletions

View File

@ -8,6 +8,9 @@ ARG GIT_REPO=https://git.openstack.org/openstack/${PROJECT}
ARG GIT_REF
ARG GIT_REF_REPO=https://git.openstack.org/openstack/${PROJECT}
ARG SCRIPTS=https://github.com/yaodu/common/archive/0.1.2.tar.gz
ARG OVERRIDE=override
ADD $OVERRIDE /
RUN set -x \
&& yum install --setopt=tsflags=nodocs -y python curl \

0
centos/override/.gitkeep Normal file
View File

3
debian/Dockerfile vendored
View File

@ -8,6 +8,9 @@ ARG GIT_REPO=https://git.openstack.org/openstack/${PROJECT}
ARG GIT_REF
ARG GIT_REF_REPO=https://git.openstack.org/openstack/${PROJECT}
ARG SCRIPTS=https://github.com/yaodu/common/archive/0.1.2.tar.gz
ARG OVERRIDE=override
ADD $OVERRIDE /
RUN set -x \
&& apt-get update \

0
debian/override/.gitkeep vendored Normal file
View File

View File

@ -8,6 +8,9 @@ ARG GIT_REPO=https://git.openstack.org/openstack/${PROJECT}
ARG GIT_REF
ARG GIT_REF_REPO=https://git.openstack.org/openstack/${PROJECT}
ARG SCRIPTS=https://github.com/yaodu/common/archive/0.1.2.tar.gz
ARG OVERRIDE=override
ADD $OVERRIDE /
RUN set -x \
&& apt-get update \

0
ubuntu/override/.gitkeep Normal file
View File