3b2c7ad457
Within the multi-node-aio-xenial-ansible folder the multi-node-aio content has been copied over, Cobbler and Trusty specific parts have been removed. The intent here is to replace much of the bash which is present with Ansible and not support Trusty. To do this a clean separate folder is required so large changes which are made will not affect the current working Trusty based install. Change-Id: Ib64ee168ece4b7a00f950c8d5b1cd6dd4dcd7ba7
49 lines
1.7 KiB
Bash
Executable File
49 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
# 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.
|
|
|
|
# Load all functions
|
|
source functions.rc
|
|
|
|
# bring in variable definitions if there is a variables.sh file
|
|
[[ -f variables.sh ]] && source variables.sh
|
|
|
|
# Provide defaults for unset variables
|
|
# Set first two octets of network used for containers, storage, etc
|
|
NETWORK_BASE=${NETWORK_BASE:-172.29}
|
|
|
|
# Instruct the system do all of the require host setup
|
|
SETUP_HOST=${SETUP_HOST:-true}
|
|
[[ "${SETUP_HOST}" = true ]] && source setup-host.sh
|
|
|
|
SETUP_PXEBOOT=${SETUP_PXEBOOT:-true}
|
|
[[ "${SETUP_PXEBOOT}" = true ]] && source setup-pxeboot.sh
|
|
|
|
# Instruct the system do all of the virsh setup
|
|
SETUP_VIRSH_NET=${SETUP_VIRSH_NET:-true}
|
|
[[ "${SETUP_VIRSH_NET}" = true ]] && source setup-virsh-net.sh
|
|
|
|
# Instruct the system to create and boot all of the VMs
|
|
CREATE_VMS=${CREATE_VMS:-true}
|
|
[[ "${CREATE_VMS}" = true ]] && source no-cobbler-create-vms.sh
|
|
|
|
# Instruct the system to configure all of the VMs
|
|
CONFIGURE_VMS=${CONFIGURE_VMS:-true}
|
|
[[ "${CONFIGURE_VMS}" = true ]] && source no-cobbler-configure-vms.sh
|
|
|
|
# Instruct the system to deploy OpenStack Ansible
|
|
DEPLOY_OSA=${DEPLOY_OSA:-true}
|
|
[[ "${DEPLOY_OSA}" = true ]] && source deploy-osa.sh
|