Giter VIP home page Giter VIP logo

cloud's Introduction

Shell hacks to manage cloud instances

Scripts

  • az - azure
  • ec2 - aws ec2
  • esx - vmware esx (via ssh)
  • gcp - google
  • gke - googke k8s
  • vcs - vmware vcenter server (via govc)

Usage

./script create|delete|ssh|list|setup <name>

create - creates instance with owner tag
delete - deletes instance
ssh    - ssh to instance
list   - list owned instances
setup  - installs the cloud provider

Examples

./ec2 create foobar
./ec2 list
./ec2 ssh foobar
./ec2 delete foobar

Create default type instance in ec2

./ec2 create foobar

To create specific instance / disk type

type="m5.4xlarge" data_size="256" data_type="io1" data_iops="1500" ./ec2 create foobar

Create instance with 4 disks

data_size="200 200 200 220" ./ec2 create foobar

If you don't want any data disks set it to empty string ""

disks="" ./ec2 create foobar

Use specific owner

owner="bob" ./ec2 create foobar owner="bob" ./ec2 list

Specific distro

ostype=coreos ./ec2 create foobar user=core ./ec2 ssh foobar

Specific AMI

ostype=ami-123456 ./ec2 create foobar

To run specific commands on a node

./ec2 ssh foobar cat /etc/passwd

To install Portworx on a bunch of nodes in parallel

for n in foobar{0..7}; do ./ec2 ssh $n < run/instpx& done

To spin up Kubernetes cluster with Portworx

see k8s example script

Remarks

  • esx/vcs require a template vm with open-vm-tools, openssh-server and passwordless sudo
  • delete command will delete any node regardless of ownership
  • az/vcs does not support multiple disks (TODO)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.