Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.65 KB

GettingStarted.md

File metadata and controls

44 lines (33 loc) · 1.65 KB

Section 1: Getting Started

Getting started on Google Cloud

Have Google Cloud SDK installed and run:

gcloud init

This will set up your default project and grant credentials to the Google Cloud SDK. Also, provide credentials so that dsub can call Google APIs:

gcloud auth application-default login

Getting started on AWS Batch

  1. Create the Hummingbird Cloudformation Stack in the target AWS Account and Region. This will create the necessary networking components (i.e. VPC, Subnets, Security Groups) to run Hummingbird.

    Launch Stack

  2. Install AWS CLI and configure:

    aws configure
    

    It will ask for Access key ID and Secret access key. This credential will be used for all resources on AWS. See more instructions here.

Getting started on Azure Batch

Install Azure CLI and login:

az login

Set the Subscription ID:

# Show all accounts
az account list --output table

# Set the Subscription ID or Name gathered from the table above (replace Example Subscription)
az account set --subscription "Example Subscription"