The --no-ri and --no-rdoc option is removed in later versions. Change-Id: I199e980fe13d4932e7d3f9f484ea3dc25e58f01c
		
			
				
	
	
		
			105 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			105 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
# Copyright 2015 Red Hat, Inc.
 | 
						|
#
 | 
						|
# 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.
 | 
						|
#
 | 
						|
# Deploy Puppet OpenStack modules, deploy OpenStack and test the setup.
 | 
						|
# Software requirements:
 | 
						|
# * Ubuntu 14.04 LTS or Ubuntu 16.04 LTS or CentOS7 fresh install
 | 
						|
# * 'git' installed
 | 
						|
#
 | 
						|
# Hardware requirements:
 | 
						|
# * At least 4GB of memory, but 8GB is recommended
 | 
						|
# * At least 10GB of storage
 | 
						|
#
 | 
						|
# Usage:
 | 
						|
# $ git clone https://opendev.org/openstack/puppet-openstack-integration
 | 
						|
# $ cd puppet-openstack-integration
 | 
						|
# $ ./all-in-one.sh
 | 
						|
#
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
if [ -n "$DEBUG" ]; then
 | 
						|
  set -x
 | 
						|
fi
 | 
						|
 | 
						|
export SCENARIO=scenario-aio
 | 
						|
export SCRIPT_DIR=$(cd `dirname $0` && pwd -P)
 | 
						|
source $SCRIPT_DIR/functions
 | 
						|
 | 
						|
print_header 'Start (all-in-one.sh)'
 | 
						|
 | 
						|
if is_fedora; then
 | 
						|
    print_header 'Setup (RedHat based)'
 | 
						|
    sudo -E $YUM -y remove facter puppet rdo-release
 | 
						|
    sudo -E $YUM -y install libxml2-devel libxslt-devel ruby-devel rubygems wget
 | 
						|
    sudo -E $YUM -y groupinstall "Development Tools"
 | 
						|
    DASHBOARD="dashboard"
 | 
						|
elif uses_debs; then
 | 
						|
    print_header 'Setup (Debian based)'
 | 
						|
    sudo apt-get remove -y --purge facter puppet puppet-common
 | 
						|
    sudo apt-get update
 | 
						|
    sudo apt-get install -y libxml2-dev libxslt-dev zlib1g-dev ruby wget lsb-release curl apt-transport-https adduser
 | 
						|
    DASHBOARD="horizon"
 | 
						|
fi
 | 
						|
 | 
						|
if [ $(lsb_release --id -s) = "Debian" ] ; then
 | 
						|
    if ! getent passwd puppet ; then
 | 
						|
        adduser --disabled-password --gecos puppet,,, puppet
 | 
						|
    fi
 | 
						|
fi
 | 
						|
 | 
						|
print_header 'Install Bundler'
 | 
						|
mkdir -p .bundled_gems
 | 
						|
export GEM_HOME=`pwd`/.bundled_gems
 | 
						|
ruby <<EOF
 | 
						|
cmd = 'gem install --no-user-install bundler --no-document --verbose'
 | 
						|
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.3.0') then
 | 
						|
    cmd += ' -v 1.17.3'
 | 
						|
end
 | 
						|
system(cmd)
 | 
						|
EOF
 | 
						|
 | 
						|
set -e
 | 
						|
./run_tests.sh
 | 
						|
RESULT=$?
 | 
						|
set +e
 | 
						|
if [ $RESULT -ne 0 ]; then
 | 
						|
  echo "Deployment failed to finish."
 | 
						|
  exit 1
 | 
						|
fi
 | 
						|
 | 
						|
print_header 'Setup openrc'
 | 
						|
cat > ~/openrc <<EOF
 | 
						|
export OS_PROJECT_DOMAIN_ID=default
 | 
						|
export OS_USER_DOMAIN_ID=default
 | 
						|
export OS_PROJECT_NAME=openstack
 | 
						|
export OS_TENANT_NAME=openstack
 | 
						|
export OS_USERNAME=admin
 | 
						|
export OS_PASSWORD=a_big_secret
 | 
						|
export OS_AUTH_URL=http://127.0.0.1:5000/v3
 | 
						|
export OS_IDENTITY_API_VERSION=3
 | 
						|
EOF
 | 
						|
 | 
						|
cat <<-EOF
 | 
						|
 | 
						|
OpenStack Dashboard available: http://127.0.0.1/${DASHBOARD}
 | 
						|
To access through Horizon, use the following user/password:
 | 
						|
  admin / a_big_secret
 | 
						|
To use OpenStack through the CLI, run:
 | 
						|
  source ~/openrc
 | 
						|
 | 
						|
EOF
 | 
						|
print_header 'Done (all-in-one.sh)'
 |