Add prebuilt images as option

This commit is contained in:
Aleksandr Didenko 2016-07-04 15:22:30 +02:00
parent 4c300a57b5
commit 7d14763cf0

View file

@ -2,6 +2,8 @@
set -e set -e
PREBUILT="$1"
create_mcp_conf() { create_mcp_conf() {
echo "Create mcp config" echo "Create mcp config"
cat > /root/mcp.conf << EOF cat > /root/mcp.conf << EOF
@ -82,9 +84,11 @@ hack_images() {
done done
} }
# Switch to using prebuild images from ccp team
#create_mcp_conf
create_mirantis_mcp_conf
create_registry create_registry
#create_resolvconf
#build_images if [ -n "$PREBUILT" ]; then
create_mirantis_mcp_conf
else
create_mcp_conf
build_images
fi