
Sadly the log node does not have enough ram to run a full ansible run. Ansible 2.x requires more ram than one would expect, especially when the inventory gets large. this change moves the deploy node to infra1 as it will already have the ram needed to run the playbooks. Additionally the container storage for infra nodes was too small which forces builds into error. The default storage for VMs has been set to 90GiB each and the preseed will create a logical volume for VMs mounted at /var/lib/lxc. While the limited ram works well for the VMs and within a running deployment of OSA, ansible-playbook is subject to crash like so: An exception occurred during task execution. To see the full traceback, use -vvv. The error was: OSError: [Errno 12] Cannot allocate memory fatal: [infra1_cinder_api_container-b38b47ea]: FAILED! => {"failed": true, "msg": "Unexpected failure during module execution.", "stdout": ""} So infra nodes have had the memory constraint raised to 8GiB Change-Id: I7175ea92f663dfef5966532cfc0b4beaadb9eb03 Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
37 lines
1.4 KiB
Bash
Executable File
37 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright [2016] [Kevin Carter]
|
|
#
|
|
# 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.
|
|
|
|
set -euvo
|
|
|
|
source bootstrap.sh
|
|
|
|
source ansible-env.rc
|
|
|
|
ansible-playbook -vv \
|
|
-i playbooks/inventory \
|
|
-e setup_host=${SETUP_HOST:-"true"} \
|
|
-e setup_pxeboot=${SETUP_PXEBOOT:-"true"} \
|
|
-e setup_dhcpd=${SETUP_DHCPD:-"true"} \
|
|
-e deploy_vms=${DEPLOY_VMS:-"true"} \
|
|
-e deploy_osa=${DEPLOY_OSA:-"true"} \
|
|
-e osa_branch=${OSA_BRANCH:-"master"} \
|
|
-e default_network=${DEFAULT_NETWORK:-"eth0"} \
|
|
-e default_image=${DEFAULT_IMAGE:-"ubuntu-16.04-amd64"} \
|
|
-e vm_disk_size=${VM_DISK_SIZE:-92160} \
|
|
-e http_proxy=${http_proxy:-''} \
|
|
-e run_osa=${RUN_OSA:-"true"} \
|
|
-e pre_config_osa=${PRE_CONFIG_OSA:-"true"} \
|
|
playbooks/site.yml
|