Class: VagrantPlugins::Rackspace::Action::CreateServer

Inherits:
Object
  • Object
show all
Includes:
Vagrant::Util::Retryable
Defined in:
lib/vagrant-rackspace/action/create_server.rb

Overview

This creates the Rackspace server.

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ CreateServer

Returns a new instance of CreateServer.



13
14
15
16
# File 'lib/vagrant-rackspace/action/create_server.rb', line 13

def initialize(app, env)
  @app    = app
  @logger = Log4r::Logger.new("vagrant_rackspace::action::create_server")
end

Instance Method Details

#call(env) ⇒ Object



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# File 'lib/vagrant-rackspace/action/create_server.rb', line 18

def call(env)
  # Get the Rackspace configs
  config           = env[:machine].provider_config
  machine_config   = env[:machine].config
  begin
    communicator = machine_config.vm.communicator ||= :ssh
  rescue NoMethodError
    communicator = :ssh
  end

  # Find the flavor
  env[:ui].info(I18n.t("vagrant_rackspace.finding_flavor"))
  flavor = find_matching(env[:rackspace_compute].flavors, config.flavor)
  raise Errors::NoMatchingFlavor if !flavor

  # Find the image
  env[:ui].info(I18n.t("vagrant_rackspace.finding_image"))
  image = find_matching(env[:rackspace_compute].images, config.image)
  raise Errors::NoMatchingImage if !image

  # Figure out the name for the server
  server_name = config.server_name || env[:machine].name

  if communicator == :winrm
    env[:ui].warn(I18n.t("vagrant_rackspace.warn_insecure_winrm")) if !winrm_secure?(machine_config)
    env[:ui].warn(I18n.t("vagrant_rackspace.warn_winrm_password")) if config.admin_password != machine_config.winrm.password
  else # communicator == :ssh
    # If we are using a key name, can ignore the public key path
    if not config.key_name
      # If we're using the default keypair, then show a warning
      default_key_path = Vagrant.source_root.join("keys/vagrant.pub").to_s
      public_key_path  = File.expand_path(config.public_key_path, env[:root_path])

      if default_key_path == public_key_path
        env[:ui].warn(I18n.t("vagrant_rackspace.warn_insecure_ssh"))
      end
    end
  end

  # Output the settings we're going to use to the user
  env[:ui].info(I18n.t("vagrant_rackspace.launching_server"))
  env[:ui].info(" -- Flavor: #{flavor.name}")
  env[:ui].info(" -- Image: #{image.name}")
  env[:ui].info(" -- Disk Config: #{config.disk_config}") if config.disk_config
  env[:ui].info(" -- Networks: #{config.networks}") if config.networks
  env[:ui].info(" -- Name: #{server_name}")

  # Build the options for launching...
  options = {
    :flavor_id   => flavor.id,
    :image_id    => image.id,
    :name        => server_name,
    :metadata    => config.
  }

  if config.admin_password
    options[:password] = config.admin_password
  end

  if config.user_data
    options[:user_data] = File.read(config.user_data)
  end

  if config.config_drive
    options[:config_drive] = config.config_drive
  end

  if communicator == :ssh
    if config.key_name
      options[:key_name] = config.key_name
      env[:ui].info(" -- Key Name: #{config.key_name}")
    else
      options[:personality] = [
        {
          :path     => "/root/.ssh/authorized_keys",
          :contents => encode64(File.read(public_key_path))
        }
      ]
    end
  end

  if config.init_script && communicator == :winrm
    # Might want to check init_script against known limits
    options[:personality] = [
      {
        :path     => 'C:\\cloud-automation\\bootstrap.cmd',
        :contents => encode64(config.init_script, :crlf_newline => true)
      }
    ]
  end

  options[:disk_config] = config.disk_config if config.disk_config
  options[:networks] = config.networks if config.networks

  # Create the server
  server = env[:rackspace_compute].servers.create(options)

  # Store the ID right away so we can track it
  env[:machine].id = server.id

  # Wait for the server to finish building
  env[:ui].info(I18n.t("vagrant_rackspace.waiting_for_build"))
  retryable(:on => Fog::Errors::TimeoutError, :tries => 200) do
    # If we're interrupted don't worry about waiting
    next if env[:interrupted]

    # Set the progress
    report_server_progress(env[:machine], server.progress, 100, false)

    # Wait for the server to be ready
    begin
      server.wait_for(5) { ready? }
    rescue RuntimeError => e
      # If we don't have an error about a state transition, then
      # we just move on.
      raise if e.message !~ /should have transitioned/
      raise Errors::CreateBadState, :state => server.state
    end
  end

  if !env[:interrupted]
    # Clear the line one more time so the progress is removed
    env[:ui].clear_line

    # Wait for RackConnect to complete
    if ( config.rackconnect )
      env[:ui].info(I18n.t("vagrant_rackspace.waiting_for_rackconnect"))
      while true
        status = server..all["rackconnect_automation_status"]
        if ( !status.nil? )
          env[:ui].info( status )
        end
        break if env[:interrupted]
        break if (status.to_s =~ /deployed/i)
        sleep 10
      end
    end

    # Wait for a communicator
    env[:ui].info(I18n.t("vagrant_rackspace.waiting_for_communicator",
      :communicator => communicator, :address => server.public_ip_address))

    while true
      # If we're interrupted then just back out
      break if env[:interrupted]
      break if env[:machine].communicate.ready?
      sleep 2
    end

    env[:ui].info(I18n.t("vagrant_rackspace.ready"))
  end

  env[:machine].communicate.sudo config.init_script if config.init_script && communicator == :ssh
  @app.call(env)
end