
Changing the doc structure plus adding a step by step s2aio installation instructions, as well as deployment installation instructions Bonuses: 1. Allowing an empty docker repo prefix (no preceding ip:port) 2. Installation scripts to use openstack cli instead of keystone cli 3. Changing the /opt/ibm prefix to /opt/storlets in the Docker container 4. Simplified deployment installation scripts: moving all mgmt tools aside for future refactoring 5. storlets-swift-install repo moved from OpenI-Beam to eranr for maintainability reasons Change-Id: Id40b0984bc8325f0d2a2977b4c266adb2e95b997
15 lines
292 B
Bash
Executable File
15 lines
292 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# This script deploys storlets over existing swift cluster.
|
|
|
|
# Make sure we have ansible
|
|
install/install_ansible.sh
|
|
|
|
# Prepare the storlets installation
|
|
install/storlets/prepare_storlets_install.sh deploy
|
|
|
|
# Deploy storlets
|
|
cd install/storlets
|
|
./install_storlets.sh deploy
|
|
cd -
|