github.com/sentienttechnologies/studio-go-runner@v0.0.0-20201118202441-6d21f2ced8ee/cloud/README.md (about)

     1  # Introduction
     2  
     3  The cloud sub-directory contains scripts that can be used within a cloud context to install the queue and storage server dependencies needed for running the studio-go-runner.
     4  
     5  # Infrastructure Installation
     6  
     7  in order to make use of these scripts four environment variables should be defined first for the Minio and the RabbitMQ access secrets, or passwords:
     8  
     9  MINIO_ACCESS_KEY
    10  MINIO_SECRET_KEY
    11  RMQ_ADMIN_PASSWORD
    12  RMQ_USER_PASSWORD
    13  
    14  
    15  Use the following commands to download the installation script.  Before running it you must change the file to include password and AWS, or Azure location information:
    16   
    17  ```shell
    18  export CLOUD_VENDOR=aws  # azure is also a valid value
    19  wget -O install_custom.sh https://raw.githubusercontent.com/leaf-ai/studio-go-runner/feature/233_kustomize/cloud/$CLOUD_VENDOR/install.sh
    20  ```
    21  
    22  Using vim for another file editing tool on linux to change the script to your needs, then run the script and use the echo command to give you the IP addresses of the server that were installed.
    23  
    24  ```shell
    25  ./install_custom.sh
    26  ```