File: bootstrap.rb

package info (click to toggle)
ruby-fog-google 1.19.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,568 kB
  • sloc: ruby: 16,775; makefile: 3
file content (27 lines) | stat: -rw-r--r-- 901 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# All examples presume that you have a ~/.fog credentials file set up.
# More info on it can be found here: http://fog.io/about/getting_started.html
# Code can be ran by simply invoking `ruby bootstrap.rb`
# Note: this example will require 'net-ssh' gem to be installed

require "bundler"
Bundler.require(:default, :development)

p "Connecting to google..."
p "======================="
connection = Fog::Compute.new(:provider => "Google")

p "Bootstrapping a server..."
p "========================="
server = connection.servers.bootstrap

p "Waiting for server to be sshable..."
p "==================================="
server.wait_for { sshable? }

p "Trying to send an SSH command..."
p "================================"
raise "Could not bootstrap sshable server." unless server.ssh("whoami")

p "Deleting a server..."
p "===================="
raise "Could not delete server." unless server.destroy