Sha256: db7c6a5c4454861dddcafab3527711bccd1bf61375104b2b554e3df1c5686028

Contents?: true

Size: 932 Bytes

Versions: 2

Compression:

Stored size: 932 Bytes

Contents

command :create do |c|
  c.summary = 'Create a droplet/host in your provider account'
  c.syntax = 'ops create [DNS_name]'
  c.description = "Creates the host described in the file #{Ops::HOSTS_DIR}/[DNS_name].yml"
  c.example "Create the host example.com in your DigitalOcean console. This is described in '#{Ops::HOSTS_DIR}/example.com.yml' like:\n    #      size:     512mb\n    #      region:   ams1\n    #      image:    coreos-stable\n    #      ssh_keys:\n    #        - e7:51:47:bc:7f:dc:2f:3c:56:65:28:e1:10:9c:88:57  xx:xx:xx:xx:xx:xx:xx", 'ops create example.com'
  c.action do |args, options|
    droplet = DigitalOcean::build_droplet args[0]
    cli = DigitalOcean::client
    resp = cli.droplets.create droplet
    if resp == droplet
      ip = cli.find_droplet_by_name(args[0]).networks["v4"].first.ip_address
      say "Droplet #{args[0]} (IP: #{ip}) succesfully created!"
    else
      raise resp
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
open-dock-0.0.12 lib/open-dock/commands/create_host.rb
open-dock-0.0.11 lib/open-dock/commands/create_host.rb