diff options
author | Michael Chapman <michapma@redhat.com> | 2017-09-29 16:02:50 +1000 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2017-10-05 19:13:27 +0000 |
commit | 189b69a875d3eefca2a7eb3fa354b9f4930cbcd7 (patch) | |
tree | a1bb0bdd98828c4e4aca2dc00173a8a86622645a /build/barometer-install.sh | |
parent | 7771d5010b9845576ceb0bbe5ad5f405ed99b871 (diff) |
Increase memory size for virt-customize
Some of the bigger commands can exceed the default,
so increase all instances for consistency. It's
unlikely build machines won't have 4G of memory
available.
Change-Id: Ifa575b6e6faef9ba038900ab0e080da15d5680aa
JIRA: APEX-520
Signed-off-by: Michael Chapman <michapma@redhat.com>
(cherry picked from commit 0220094bfe4abdc964f282f4f01190897e3065e4)
Diffstat (limited to 'build/barometer-install.sh')
-rwxr-xr-x | build/barometer-install.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/build/barometer-install.sh b/build/barometer-install.sh index bde7479e..15753a44 100755 --- a/build/barometer-install.sh +++ b/build/barometer-install.sh @@ -17,6 +17,7 @@ # Get and install packages needed for Barometer service. # These are: collectd rpm's and dependencies, collectd-openstack-plugins, # puppet-barometer module. +source ./variables.sh # Versions/branches COLLECTD_OPENSTACK_PLUGINS_BRANCH="stable/pike" @@ -101,7 +102,7 @@ function barometer_pkgs { # Upload tar files to image # untar collectd packages # install dependencies - LIBGUESTFS_BACKEND=direct virt-customize \ + LIBGUESTFS_BACKEND=direct $VIRT_CUSTOMIZE \ --upload ${BUILD_DIR}/collectd.tar.gz:/opt/ \ --upload ${BUILD_DIR}/collectd-openstack-plugins.tar.gz:/opt/ \ --upload ${BUILD_DIR}/puppet-barometer.tar.gz:/etc/puppet/modules/ \ @@ -111,12 +112,12 @@ function barometer_pkgs { --install libvirt,libvirt-devel,gcc \ -a $OVERCLOUD_IMAGE - LIBGUESTFS_BACKEND=direct virt-customize \ + LIBGUESTFS_BACKEND=direct $VIRT_CUSTOMIZE \ --run-command 'python3.4 /opt/get-pip.py' \ --run-command 'pip3 install requests libvirt-python pbr babel future six' \ -a $OVERCLOUD_IMAGE - LIBGUESTFS_BACKEND=direct virt-customize \ + LIBGUESTFS_BACKEND=direct $VIRT_CUSTOMIZE \ --run-command "yum install -y \ /opt/libcollectdclient-${SUFFIX} \ /opt/libcollectdclient-devel-${SUFFIX} \ @@ -136,7 +137,7 @@ function barometer_pkgs { # install collectd-openstack-plugins # install puppet-barometer module # make directories for config files and mibs - LIBGUESTFS_BACKEND=direct virt-customize \ + LIBGUESTFS_BACKEND=direct $VIRT_CUSTOMIZE \ --run-command 'mkdir /opt/stack/collectd-openstack' \ --run-command "tar xfz /opt/collectd-openstack-plugins.tar.gz -C /opt/stack/collectd-openstack" \ --run-command "cd /etc/puppet/modules/ && mkdir barometer && \ |