Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow users of self-contained builder to provide alternate location for assemble scripts #36

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions centos-ruby-builder/bin/restore-artifacts
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#!/bin/bash

cd $HOME

exec tar -xzf -
# Reads the archive with artifacts from STDIN and extract it
# into the $HOME (/opt/ruby) folder.
#
# NOTE: Docker needs to be run with --interactive (-i) option to route
# the stdin properly.
#
cd $HOME && exec tar -xzf -
10 changes: 6 additions & 4 deletions centos-ruby-builder/bin/save-artifacts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/bin/bash

cd $HOME

#
# Create the archive with files/folders you would like to
# preserve for the next build. Then the archive is streamed into
# STDOUT.
#
# List the files and directories you would like to archive.
#
exec tar -czf - {bundle,gems}
cd $HOME && exec tar -czf - {bundle,gems}
36 changes: 28 additions & 8 deletions centos-ruby-builder/bin/start
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,28 @@
source ${HOME}/etc/sdk
source ${HOME}/etc/helpers

# Allow users to inspect/debug the builder image itself, by using:
# $ docker run -i -t openshift/centos-ruby-builder --debug
#
[ "$1" == "--debug" ] && exec /bin/bash

# If the /tmp/src is empty, then print usage and exit.
(dir_is_empty /tmp/src) && print_usage_and_exit

# If the directory with sources contain '.sti' folder, then look for the
# prepare/run/etc. scripts there and replace the 'base' image scripts.
#
(! dir_is_empty /tmp/src/.sti ) && copy_assemble_scripts

while getopts “h:s:d” opt; do
case $opt in
h)
print_usage_and_exit
;;
s)
download_assemble_scripts "${OPTARG}"
;;
d)
exec /bin/bash
;;
esac
done

# Detect the presence of $stdin and restore the artifacts
# To restore the artifacts, you have to run the builder as:
#
Expand All @@ -21,12 +35,18 @@ if [ -p /dev/stdin ]; then
cat | ${HOME}/bin/restore-artifacts
fi

# Build the ruby application first
# Prepare the Ruby application source code which includes:
#
# * (optional) Restore artifacts (bundle/vendor) from the previous build
# * Installing all rubygems dependencies using Bundler
# * (optional) Complilation of the Rails assets (rake assets:precompile)
#
${HOME}/bin/prepare

# Replace this script with the application runner at the end of the build.
#
echo "---> Build successful. Commit this image with: 'docker commit ${HOSTNAME} ruby-app'"

# Once the Ruby application sources are prepared, replace
# this script with the 'run' script that launch the application
# using Ruby application server (puma or rackup by default).
#
cp -f ${HOME}/bin/run ${HOME}/bin/start && exit
34 changes: 34 additions & 0 deletions centos-ruby-builder/contrib/perf-test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
#!/bin/bash -e

mkdir $(pwd)/.test

test_app_name="test-app-$(date +%s)"

git clone https://github.com/mfojtik/sinatra-app-example .test/app
cd .test/app

function run_clean_build() {
docker run --cidfile="app.cid" -v $(pwd):/tmp/src openshift/centos-ruby-builder
docker commit $(cat app.cid) $test_app_name
rm -f app.cid
}

function run_inc_build() {
docker run --rm --entrypoint="/opt/ruby/bin/save-artifacts" $test_app_name > ../archive.tgz
docker run --cidfile="app.cid" -i -v $(pwd):/tmp/src openshift/centos-ruby-builder < ../archive.tgz
docker commit $(cat app.cid) $test_app_name
rm -f app.cid
}

time run_clean_build
echo "gem 'nokogiri'" >> Gemfile
bundle install
time run_inc_build
echo "gem 'therubyracer'" >> Gemfile
bundle install
time run_inc_build
echo "gem 'rails'" >> Gemfile
bundle install
time run_inc_build

cd ../.. && rm -rf .test
40 changes: 39 additions & 1 deletion centos-ruby-builder/etc/helpers
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,45 @@ function print_usage_and_exit() {
echo
echo "Other options:"
echo
echo " --debug Drop to the shell instead of build."
echo " -s <URL> Point builder to remote directory with assemble scripts"
echo " -h Print this usage"
echo " -d Drop to the shell instead of build."
echo
exit 0
}

# Functions to support downloading/replacing the base image scripts.
# Users could override them by:
#
# 1) Adding them into GIT_SOURCE/.sti/ folder
# 1) Using '-s URL' on the builder command line

function download_script() {
local url="$1"
local script_name="$2"
if ! curl --silent -L "${url}/${script_name}" > ${HOME}/bin/${script_name}; then
echo "Warning: Unable to download '${url}/${script_name}' ($?)"
fi
}

function copy_script() {
local $script_name="$1"
[ ! -f "/tmp/src/.sti/${script_name}"] && return
cp -f "/tmp/src/.sti/${script_name}" "${HOME}/bin/${script_name}" && \
chmod +x "${HOME}/bin/${script_name}"
}

function download_assemble_scripts() {
# FIXME: Rename 'prepare' to 'assemble' at some point.
download_script "$1" "prepare"
download_script "$1" "save-artifacts"
download_script "$1" "restore-artifacts"
download_script "$1" "run"
}

function copy_assemble_scripts() {
copy_script 'prepare'
copy_script 'save-artifacts'
copy_script 'restore-artifacts'
copy_script 'run'
}