c0fd48390f
We have added and moved elements around and that needs to be reflected in tools/build-image.sh so that local image builds result in functional images. Change-Id: Iaba5eac8ff65b10d608c7d5aa84f083ee00a8319
45 lines
1.4 KiB
Bash
Executable File
45 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) 2014 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# To run on Ubuntu 14.04, this depends on:
|
|
# diskimage-builder
|
|
# qemu-utils
|
|
# debootstrap
|
|
|
|
set -e
|
|
|
|
export ELEMENTS_PATH=${ELEMENTS_PATH:-nodepool/elements}
|
|
export DISTRO=${DISTRO:-ubuntu-minimal}
|
|
export IMAGE_NAME=${IMAGE_NAME:-devstack-gate}
|
|
export NODEPOOL_SCRIPTDIR=${NODEPOOL_SCRIPTDIR:-nodepool/scripts}
|
|
export CONFIG_SOURCE=${CONFIG_SOURCE:-https://git.openstack.org/openstack-infra/system-config}
|
|
export CONFIG_REF=${CONFIG_REF:-master}
|
|
export EXTRA_ELEMENTS=${EXTRA_ELEMENTS:-}
|
|
|
|
# The list of elements here should match nodepool/nodepool.yaml
|
|
disk-image-create -x --no-tmpfs -o $IMAGE_NAME \
|
|
$DISTRO \
|
|
vm \
|
|
simple-init \
|
|
openstack-repos \
|
|
nodepool-base \
|
|
cache-devstack \
|
|
cache-bindep \
|
|
growroot \
|
|
infra-package-needs \
|
|
stackviz \
|
|
$EXTRA_ELEMENTS
|