vagrant-conoha 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +22 -0
  3. data/.rubocop.yml +35 -0
  4. data/CHANGELOG.md +3 -0
  5. data/Gemfile +19 -0
  6. data/LICENSE +23 -0
  7. data/Rakefile +25 -0
  8. data/Vagrantfile +71 -0
  9. data/dummy.box +0 -0
  10. data/example_box/README.md +13 -0
  11. data/example_box/metadata.json +3 -0
  12. data/functional_tests/Vagrantfile +58 -0
  13. data/functional_tests/keys/vagrant-openstack +27 -0
  14. data/functional_tests/keys/vagrant-openstack.pub +1 -0
  15. data/functional_tests/run_tests.sh +142 -0
  16. data/lib/vagrant-conoha.rb +29 -0
  17. data/lib/vagrant-conoha/action.rb +227 -0
  18. data/lib/vagrant-conoha/action/abstract_action.rb +22 -0
  19. data/lib/vagrant-conoha/action/connect_openstack.rb +60 -0
  20. data/lib/vagrant-conoha/action/create_server.rb +154 -0
  21. data/lib/vagrant-conoha/action/create_stack.rb +68 -0
  22. data/lib/vagrant-conoha/action/delete_server.rb +53 -0
  23. data/lib/vagrant-conoha/action/delete_stack.rb +73 -0
  24. data/lib/vagrant-conoha/action/message.rb +19 -0
  25. data/lib/vagrant-conoha/action/provision.rb +60 -0
  26. data/lib/vagrant-conoha/action/read_ssh_info.rb +72 -0
  27. data/lib/vagrant-conoha/action/read_state.rb +43 -0
  28. data/lib/vagrant-conoha/action/resume.rb +24 -0
  29. data/lib/vagrant-conoha/action/start_server.rb +24 -0
  30. data/lib/vagrant-conoha/action/stop_server.rb +25 -0
  31. data/lib/vagrant-conoha/action/suspend.rb +24 -0
  32. data/lib/vagrant-conoha/action/sync_folders.rb +129 -0
  33. data/lib/vagrant-conoha/action/wait_accessible.rb +61 -0
  34. data/lib/vagrant-conoha/action/wait_active.rb +33 -0
  35. data/lib/vagrant-conoha/action/wait_stop.rb +33 -0
  36. data/lib/vagrant-conoha/catalog/openstack_catalog.rb +67 -0
  37. data/lib/vagrant-conoha/client/cinder.rb +39 -0
  38. data/lib/vagrant-conoha/client/domain.rb +159 -0
  39. data/lib/vagrant-conoha/client/glance.rb +65 -0
  40. data/lib/vagrant-conoha/client/heat.rb +49 -0
  41. data/lib/vagrant-conoha/client/http_utils.rb +116 -0
  42. data/lib/vagrant-conoha/client/keystone.rb +77 -0
  43. data/lib/vagrant-conoha/client/neutron.rb +48 -0
  44. data/lib/vagrant-conoha/client/nova.rb +212 -0
  45. data/lib/vagrant-conoha/client/openstack.rb +59 -0
  46. data/lib/vagrant-conoha/client/request_logger.rb +23 -0
  47. data/lib/vagrant-conoha/client/rest_utils.rb +25 -0
  48. data/lib/vagrant-conoha/command/abstract_command.rb +51 -0
  49. data/lib/vagrant-conoha/command/flavor_list.rb +24 -0
  50. data/lib/vagrant-conoha/command/image_list.rb +29 -0
  51. data/lib/vagrant-conoha/command/main.rb +51 -0
  52. data/lib/vagrant-conoha/command/network_list.rb +25 -0
  53. data/lib/vagrant-conoha/command/openstack_command.rb +16 -0
  54. data/lib/vagrant-conoha/command/reset.rb +20 -0
  55. data/lib/vagrant-conoha/command/subnet_list.rb +22 -0
  56. data/lib/vagrant-conoha/command/utils.rb +22 -0
  57. data/lib/vagrant-conoha/command/volume_list.rb +25 -0
  58. data/lib/vagrant-conoha/config.rb +390 -0
  59. data/lib/vagrant-conoha/config/http.rb +39 -0
  60. data/lib/vagrant-conoha/config_resolver.rb +285 -0
  61. data/lib/vagrant-conoha/errors.rb +187 -0
  62. data/lib/vagrant-conoha/logging.rb +39 -0
  63. data/lib/vagrant-conoha/plugin.rb +48 -0
  64. data/lib/vagrant-conoha/provider.rb +50 -0
  65. data/lib/vagrant-conoha/utils.rb +26 -0
  66. data/lib/vagrant-conoha/version.rb +15 -0
  67. data/lib/vagrant-conoha/version_checker.rb +76 -0
  68. data/locales/en.yml +393 -0
  69. data/spec/vagrant-conoha/action/connect_openstack_spec.rb +695 -0
  70. data/spec/vagrant-conoha/action/create_server_spec.rb +225 -0
  71. data/spec/vagrant-conoha/action/create_stack_spec.rb +99 -0
  72. data/spec/vagrant-conoha/action/delete_server_spec.rb +89 -0
  73. data/spec/vagrant-conoha/action/delete_stack_spec.rb +63 -0
  74. data/spec/vagrant-conoha/action/message_spec.rb +33 -0
  75. data/spec/vagrant-conoha/action/provision_spec.rb +104 -0
  76. data/spec/vagrant-conoha/action/read_ssh_info_spec.rb +190 -0
  77. data/spec/vagrant-conoha/action/read_state_spec.rb +81 -0
  78. data/spec/vagrant-conoha/action/resume_server_spec.rb +49 -0
  79. data/spec/vagrant-conoha/action/start_server_spec.rb +49 -0
  80. data/spec/vagrant-conoha/action/stop_server_spec.rb +49 -0
  81. data/spec/vagrant-conoha/action/suspend_server_spec.rb +49 -0
  82. data/spec/vagrant-conoha/action/sync_folders_spec.rb +155 -0
  83. data/spec/vagrant-conoha/action/wait_accessible_spec.rb +67 -0
  84. data/spec/vagrant-conoha/action/wait_active_spec.rb +53 -0
  85. data/spec/vagrant-conoha/action/wait_stop_spec.rb +53 -0
  86. data/spec/vagrant-conoha/action_spec.rb +120 -0
  87. data/spec/vagrant-conoha/client/cinder_spec.rb +127 -0
  88. data/spec/vagrant-conoha/client/glance_spec.rb +143 -0
  89. data/spec/vagrant-conoha/client/heat_spec.rb +128 -0
  90. data/spec/vagrant-conoha/client/keystone_spec.rb +150 -0
  91. data/spec/vagrant-conoha/client/neutron_spec.rb +171 -0
  92. data/spec/vagrant-conoha/client/nova_spec.rb +757 -0
  93. data/spec/vagrant-conoha/client/utils_spec.rb +176 -0
  94. data/spec/vagrant-conoha/command/flavor_list_spec.rb +43 -0
  95. data/spec/vagrant-conoha/command/image_list_spec.rb +95 -0
  96. data/spec/vagrant-conoha/command/network_list_spec.rb +65 -0
  97. data/spec/vagrant-conoha/command/reset_spec.rb +24 -0
  98. data/spec/vagrant-conoha/command/subnet_list_spec.rb +45 -0
  99. data/spec/vagrant-conoha/command/volume_list_spec.rb +40 -0
  100. data/spec/vagrant-conoha/config_resolver_spec.rb +860 -0
  101. data/spec/vagrant-conoha/config_spec.rb +373 -0
  102. data/spec/vagrant-conoha/e2e_spec.rb.save +27 -0
  103. data/spec/vagrant-conoha/provider_spec.rb +13 -0
  104. data/spec/vagrant-conoha/spec_helper.rb +37 -0
  105. data/spec/vagrant-conoha/utils_spec.rb +129 -0
  106. data/spec/vagrant-conoha/version_checker_spec.rb +39 -0
  107. data/stackrc +25 -0
  108. data/vagrant-conoha.gemspec +32 -0
  109. metadata +343 -0
@@ -0,0 +1,129 @@
1
+ require 'vagrant-conoha/spec_helper'
2
+
3
+ describe VagrantPlugins::ConoHa::Utils do
4
+ let(:config) do
5
+ double('config').tap do |config|
6
+ config.stub(:tenant_name) { 'testTenant' }
7
+ config.stub(:server_name) { 'testName' }
8
+ config.stub(:floating_ip) { nil }
9
+ end
10
+ end
11
+
12
+ let(:nova) do
13
+ double('nova').tap do |nova|
14
+ nova.stub(:get_all_floating_ips).with(anything) do
15
+ [FloatingIP.new('80.81.82.83', 'pool-1', nil), FloatingIP.new('30.31.32.33', 'pool-2', '1234')]
16
+ end
17
+ end
18
+ end
19
+
20
+ let(:env) do
21
+ {}.tap do |env|
22
+ env[:machine] = double('machine')
23
+ env[:machine].stub(:provider_config) { config }
24
+ env[:machine].stub(:id) { '1234id' }
25
+ env[:openstack_client] = double('openstack_client')
26
+ env[:openstack_client].stub(:nova) { nova }
27
+ end
28
+ end
29
+
30
+ before :each do
31
+ Utils.send(:public, *Utils.private_instance_methods)
32
+ @action = Utils.new
33
+ end
34
+
35
+ describe 'get_ip_address' do
36
+ context 'without config.floating_ip' do
37
+ context 'with floating ip in nova details' do
38
+ it 'returns floating_ip from nova details' do
39
+ config.stub(:floating_ip) { nil }
40
+ nova.stub(:get_server_details).with(env, '1234id') do
41
+ {
42
+ 'addresses' => {
43
+ 'net' => [{
44
+ 'addr' => '13.13.13.13'
45
+ }, {
46
+ 'addr' => '12.12.12.12',
47
+ 'OS-EXT-IPS:type' => 'fixed',
48
+ 'version' => 4
49
+ }]
50
+ }
51
+ }
52
+ end
53
+ @action.get_ip_address(env).should eq('12.12.12.12')
54
+ end
55
+ end
56
+
57
+ context 'without floating ip in nova details' do
58
+ context 'with a single ip in nova details' do
59
+ it 'returns the single ip' do
60
+ config.stub(:floating_ip) { nil }
61
+ nova.stub(:get_server_details).with(env, '1234id') do
62
+ {
63
+ 'addresses' => {
64
+ 'net' => [{
65
+ 'addr' => '13.13.13.13',
66
+ 'OS-EXT-IPS:type' => 'fixed'
67
+ }]
68
+ }
69
+ }
70
+ end
71
+ expect(@action.get_ip_address(env)).to eq('13.13.13.13')
72
+ end
73
+ end
74
+
75
+ context 'with multiple ips in nova details' do
76
+ it 'return the one corresponding to the first network in the Vagrantfile' do
77
+ config.stub(:floating_ip) { nil }
78
+ config.stub(:networks) { %w(net-2 net-1 net-3) }
79
+ nova.stub(:get_server_details).with(env, '1234id') do
80
+ {
81
+ 'addresses' => {
82
+ 'net-1' => [{
83
+ 'addr' => '11.11.11.11',
84
+ 'OS-EXT-IPS:type' => 'fixed'
85
+ }],
86
+ 'net-2' => [{
87
+ 'addr' => '12.12.12.12',
88
+ 'OS-EXT-IPS:type' => 'fixed'
89
+ }],
90
+ 'net-3' => [{
91
+ 'addr' => '13.13.13.13',
92
+ 'OS-EXT-IPS:type' => 'fixed'
93
+ }]
94
+ }
95
+ }
96
+ end
97
+ expect(@action.get_ip_address(env)).to eq('12.12.12.12')
98
+ end
99
+ end
100
+
101
+ context 'with networks but no ips' do
102
+ it 'fails' do
103
+ config.stub(:floating_ip) { nil }
104
+ nova.stub(:get_server_details).with(env, '1234id') do
105
+ {
106
+ 'addresses' => {
107
+ 'net' => []
108
+ }
109
+ }
110
+ end
111
+ expect { @action.get_ip_address(env) }.to raise_error(Errors::UnableToResolveIP)
112
+ end
113
+ end
114
+
115
+ context 'with no networks ' do
116
+ it 'fails' do
117
+ config.stub(:floating_ip) { nil }
118
+ nova.stub(:get_server_details).with(env, '1234id') do
119
+ {
120
+ 'addresses' => {}
121
+ }
122
+ end
123
+ expect { @action.get_ip_address(env) }.to raise_error(Errors::UnableToResolveIP)
124
+ end
125
+ end
126
+ end
127
+ end
128
+ end
129
+ end
@@ -0,0 +1,39 @@
1
+ require 'vagrant-conoha/spec_helper'
2
+
3
+ describe VagrantPlugins::ConoHa::VersionChecker do
4
+ let(:version) do
5
+ double('version')
6
+ end
7
+
8
+ before :each do
9
+ @checker = VersionChecker.instance
10
+ @checker.status = nil
11
+ Gem.should_receive(:latest_spec_for)
12
+ .with('vagrant-conoha')
13
+ .and_return(OpenStruct.new.tap { |v| v.version = version })
14
+ end
15
+
16
+ describe 'check' do
17
+ it { assert_version_is :latest, '1.2.3', '1.2.3' }
18
+ it { assert_version_is :latest, '999.999.999', '999.999.999' }
19
+ it { assert_version_is :unstable, '9999.999.999', '9999.999.999' }
20
+ it { assert_version_is :unstable, '999.9999.999', '999.9999.999' }
21
+ it { assert_version_is :unstable, '999.999.9999', '999.999.9999' }
22
+ it { assert_version_is :unstable, '1.2', '1.2' }
23
+ it { assert_version_is :outdated, '1.2.3', '1.2.2' }
24
+ it { assert_version_is :outdated, '1.8.999', '1.8.998' }
25
+ it { assert_version_is :outdated, '1.9.0', '1.8.999' }
26
+ it { assert_version_is :outdated, '2.0.0', '1.999.999' }
27
+ end
28
+
29
+ private
30
+
31
+ def assert_version_is(expected_status, latest, current)
32
+ stub_const('VagrantPlugins::ConoHa::VERSION', current)
33
+ version.stub(:version) { latest }
34
+ @checker.stub(:print)
35
+ expect(@checker).to receive(:print) unless expected_status == :latest
36
+ @checker.check
37
+ expect(@checker.status).to eq(expected_status)
38
+ end
39
+ end
data/stackrc ADDED
@@ -0,0 +1,25 @@
1
+ #!/bin/bash
2
+
3
+ #Provider examples:
4
+ #Numergy
5
+ export OS_AUTH_URL=https://cloud.numergy.com/identity/v2.0/tokens
6
+ export OS_NETWORK_URL=https://cloud.numergy.com/network/v2.0
7
+ #....
8
+
9
+ if [ -z "$OS_USERNAME" ]; then
10
+ echo "Please enter your OpenStack tenant name: "
11
+ read -sr OS_TENANT_NAME_INPUT
12
+ export OS_TENANT_NAME=$OS_TENANT_NAME_INPUT
13
+ fi
14
+
15
+ if [ -z "$OS_USERNAME" ]; then
16
+ echo "Please enter your OpenStack username: "
17
+ read -sr OS_USERNAME_INPUT
18
+ export OS_USERNAME=$OS_USERNAME_INPUT
19
+ fi
20
+
21
+ if [ -z "$OS_PASSWORD" ]; then
22
+ echo "Please enter your OpenStack Password: "
23
+ read -sr OS_PASSWORD_INPUT
24
+ export OS_PASSWORD=$OS_PASSWORD_INPUT
25
+ fi
@@ -0,0 +1,32 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'vagrant-conoha/version'
4
+
5
+ Gem::Specification.new do |gem|
6
+ gem.name = 'vagrant-conoha'
7
+ gem.version = VagrantPlugins::ConoHa::VERSION
8
+ gem.authors = ['Hironobu Saitoh']
9
+ gem.email = ['hiro@hironobu.org']
10
+ gem.description = 'Enables Vagrant to manage VPS in ConoHa. (forked from github.com/ggiamarchi/vagrant-openstack-provider)'
11
+ gem.summary = 'Enables Vagrant to manage VPS in ConoHa. (forked from github.com/ggiamarchi/vagrant-openstack-provider)'
12
+ gem.homepage = 'https://github.com/hironobu-s/vagrant-conoha/'
13
+ gem.license = 'MIT'
14
+
15
+ gem.add_dependency 'json', '1.7.7'
16
+ gem.add_dependency 'rest-client', '~> 1.6.0'
17
+ gem.add_dependency 'terminal-table', '1.4.5'
18
+ gem.add_dependency 'sshkey', '1.6.1'
19
+ gem.add_dependency 'colorize', '0.7.3'
20
+
21
+ gem.add_development_dependency 'rake'
22
+ gem.add_development_dependency 'rspec', '~> 3.1.0'
23
+ gem.add_development_dependency 'rspec-its', '~> 1.0.1'
24
+ gem.add_development_dependency 'rspec-expectations', '~> 3.1.2'
25
+ gem.add_development_dependency 'webmock', '~> 1.18.0'
26
+ gem.add_development_dependency 'fakefs', '~> 0.5.2'
27
+
28
+ gem.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
29
+ gem.executables = gem.files.grep(/^bin\//).map { |f| File.basename(f) }
30
+ gem.test_files = gem.files.grep(/^(test|spec|features)\//)
31
+ gem.require_paths = ['lib']
32
+ end
metadata ADDED
@@ -0,0 +1,343 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vagrant-conoha
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Hironobu Saitoh
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-08-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: json
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 1.7.7
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 1.7.7
27
+ - !ruby/object:Gem::Dependency
28
+ name: rest-client
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 1.6.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 1.6.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: terminal-table
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '='
46
+ - !ruby/object:Gem::Version
47
+ version: 1.4.5
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '='
53
+ - !ruby/object:Gem::Version
54
+ version: 1.4.5
55
+ - !ruby/object:Gem::Dependency
56
+ name: sshkey
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '='
60
+ - !ruby/object:Gem::Version
61
+ version: 1.6.1
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '='
67
+ - !ruby/object:Gem::Version
68
+ version: 1.6.1
69
+ - !ruby/object:Gem::Dependency
70
+ name: colorize
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '='
74
+ - !ruby/object:Gem::Version
75
+ version: 0.7.3
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '='
81
+ - !ruby/object:Gem::Version
82
+ version: 0.7.3
83
+ - !ruby/object:Gem::Dependency
84
+ name: rake
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rspec
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: 3.1.0
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: 3.1.0
111
+ - !ruby/object:Gem::Dependency
112
+ name: rspec-its
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: 1.0.1
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: 1.0.1
125
+ - !ruby/object:Gem::Dependency
126
+ name: rspec-expectations
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: 3.1.2
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: 3.1.2
139
+ - !ruby/object:Gem::Dependency
140
+ name: webmock
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: 1.18.0
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: 1.18.0
153
+ - !ruby/object:Gem::Dependency
154
+ name: fakefs
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: 0.5.2
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: 0.5.2
167
+ description: Enables Vagrant to manage VPS in ConoHa. (forked from github.com/ggiamarchi/vagrant-openstack-provider)
168
+ email:
169
+ - hiro@hironobu.org
170
+ executables: []
171
+ extensions: []
172
+ extra_rdoc_files: []
173
+ files:
174
+ - ".gitignore"
175
+ - ".rubocop.yml"
176
+ - CHANGELOG.md
177
+ - Gemfile
178
+ - LICENSE
179
+ - Rakefile
180
+ - Vagrantfile
181
+ - dummy.box
182
+ - example_box/README.md
183
+ - example_box/metadata.json
184
+ - functional_tests/Vagrantfile
185
+ - functional_tests/keys/vagrant-openstack
186
+ - functional_tests/keys/vagrant-openstack.pub
187
+ - functional_tests/run_tests.sh
188
+ - lib/vagrant-conoha.rb
189
+ - lib/vagrant-conoha/action.rb
190
+ - lib/vagrant-conoha/action/abstract_action.rb
191
+ - lib/vagrant-conoha/action/connect_openstack.rb
192
+ - lib/vagrant-conoha/action/create_server.rb
193
+ - lib/vagrant-conoha/action/create_stack.rb
194
+ - lib/vagrant-conoha/action/delete_server.rb
195
+ - lib/vagrant-conoha/action/delete_stack.rb
196
+ - lib/vagrant-conoha/action/message.rb
197
+ - lib/vagrant-conoha/action/provision.rb
198
+ - lib/vagrant-conoha/action/read_ssh_info.rb
199
+ - lib/vagrant-conoha/action/read_state.rb
200
+ - lib/vagrant-conoha/action/resume.rb
201
+ - lib/vagrant-conoha/action/start_server.rb
202
+ - lib/vagrant-conoha/action/stop_server.rb
203
+ - lib/vagrant-conoha/action/suspend.rb
204
+ - lib/vagrant-conoha/action/sync_folders.rb
205
+ - lib/vagrant-conoha/action/wait_accessible.rb
206
+ - lib/vagrant-conoha/action/wait_active.rb
207
+ - lib/vagrant-conoha/action/wait_stop.rb
208
+ - lib/vagrant-conoha/catalog/openstack_catalog.rb
209
+ - lib/vagrant-conoha/client/cinder.rb
210
+ - lib/vagrant-conoha/client/domain.rb
211
+ - lib/vagrant-conoha/client/glance.rb
212
+ - lib/vagrant-conoha/client/heat.rb
213
+ - lib/vagrant-conoha/client/http_utils.rb
214
+ - lib/vagrant-conoha/client/keystone.rb
215
+ - lib/vagrant-conoha/client/neutron.rb
216
+ - lib/vagrant-conoha/client/nova.rb
217
+ - lib/vagrant-conoha/client/openstack.rb
218
+ - lib/vagrant-conoha/client/request_logger.rb
219
+ - lib/vagrant-conoha/client/rest_utils.rb
220
+ - lib/vagrant-conoha/command/abstract_command.rb
221
+ - lib/vagrant-conoha/command/flavor_list.rb
222
+ - lib/vagrant-conoha/command/image_list.rb
223
+ - lib/vagrant-conoha/command/main.rb
224
+ - lib/vagrant-conoha/command/network_list.rb
225
+ - lib/vagrant-conoha/command/openstack_command.rb
226
+ - lib/vagrant-conoha/command/reset.rb
227
+ - lib/vagrant-conoha/command/subnet_list.rb
228
+ - lib/vagrant-conoha/command/utils.rb
229
+ - lib/vagrant-conoha/command/volume_list.rb
230
+ - lib/vagrant-conoha/config.rb
231
+ - lib/vagrant-conoha/config/http.rb
232
+ - lib/vagrant-conoha/config_resolver.rb
233
+ - lib/vagrant-conoha/errors.rb
234
+ - lib/vagrant-conoha/logging.rb
235
+ - lib/vagrant-conoha/plugin.rb
236
+ - lib/vagrant-conoha/provider.rb
237
+ - lib/vagrant-conoha/utils.rb
238
+ - lib/vagrant-conoha/version.rb
239
+ - lib/vagrant-conoha/version_checker.rb
240
+ - locales/en.yml
241
+ - spec/vagrant-conoha/action/connect_openstack_spec.rb
242
+ - spec/vagrant-conoha/action/create_server_spec.rb
243
+ - spec/vagrant-conoha/action/create_stack_spec.rb
244
+ - spec/vagrant-conoha/action/delete_server_spec.rb
245
+ - spec/vagrant-conoha/action/delete_stack_spec.rb
246
+ - spec/vagrant-conoha/action/message_spec.rb
247
+ - spec/vagrant-conoha/action/provision_spec.rb
248
+ - spec/vagrant-conoha/action/read_ssh_info_spec.rb
249
+ - spec/vagrant-conoha/action/read_state_spec.rb
250
+ - spec/vagrant-conoha/action/resume_server_spec.rb
251
+ - spec/vagrant-conoha/action/start_server_spec.rb
252
+ - spec/vagrant-conoha/action/stop_server_spec.rb
253
+ - spec/vagrant-conoha/action/suspend_server_spec.rb
254
+ - spec/vagrant-conoha/action/sync_folders_spec.rb
255
+ - spec/vagrant-conoha/action/wait_accessible_spec.rb
256
+ - spec/vagrant-conoha/action/wait_active_spec.rb
257
+ - spec/vagrant-conoha/action/wait_stop_spec.rb
258
+ - spec/vagrant-conoha/action_spec.rb
259
+ - spec/vagrant-conoha/client/cinder_spec.rb
260
+ - spec/vagrant-conoha/client/glance_spec.rb
261
+ - spec/vagrant-conoha/client/heat_spec.rb
262
+ - spec/vagrant-conoha/client/keystone_spec.rb
263
+ - spec/vagrant-conoha/client/neutron_spec.rb
264
+ - spec/vagrant-conoha/client/nova_spec.rb
265
+ - spec/vagrant-conoha/client/utils_spec.rb
266
+ - spec/vagrant-conoha/command/flavor_list_spec.rb
267
+ - spec/vagrant-conoha/command/image_list_spec.rb
268
+ - spec/vagrant-conoha/command/network_list_spec.rb
269
+ - spec/vagrant-conoha/command/reset_spec.rb
270
+ - spec/vagrant-conoha/command/subnet_list_spec.rb
271
+ - spec/vagrant-conoha/command/volume_list_spec.rb
272
+ - spec/vagrant-conoha/config_resolver_spec.rb
273
+ - spec/vagrant-conoha/config_spec.rb
274
+ - spec/vagrant-conoha/e2e_spec.rb.save
275
+ - spec/vagrant-conoha/provider_spec.rb
276
+ - spec/vagrant-conoha/spec_helper.rb
277
+ - spec/vagrant-conoha/utils_spec.rb
278
+ - spec/vagrant-conoha/version_checker_spec.rb
279
+ - stackrc
280
+ - vagrant-conoha.gemspec
281
+ homepage: https://github.com/hironobu-s/vagrant-conoha/
282
+ licenses:
283
+ - MIT
284
+ metadata: {}
285
+ post_install_message:
286
+ rdoc_options: []
287
+ require_paths:
288
+ - lib
289
+ required_ruby_version: !ruby/object:Gem::Requirement
290
+ requirements:
291
+ - - ">="
292
+ - !ruby/object:Gem::Version
293
+ version: '0'
294
+ required_rubygems_version: !ruby/object:Gem::Requirement
295
+ requirements:
296
+ - - ">="
297
+ - !ruby/object:Gem::Version
298
+ version: '0'
299
+ requirements: []
300
+ rubyforge_project:
301
+ rubygems_version: 2.2.2
302
+ signing_key:
303
+ specification_version: 4
304
+ summary: Enables Vagrant to manage VPS in ConoHa. (forked from github.com/ggiamarchi/vagrant-openstack-provider)
305
+ test_files:
306
+ - spec/vagrant-conoha/action/connect_openstack_spec.rb
307
+ - spec/vagrant-conoha/action/create_server_spec.rb
308
+ - spec/vagrant-conoha/action/create_stack_spec.rb
309
+ - spec/vagrant-conoha/action/delete_server_spec.rb
310
+ - spec/vagrant-conoha/action/delete_stack_spec.rb
311
+ - spec/vagrant-conoha/action/message_spec.rb
312
+ - spec/vagrant-conoha/action/provision_spec.rb
313
+ - spec/vagrant-conoha/action/read_ssh_info_spec.rb
314
+ - spec/vagrant-conoha/action/read_state_spec.rb
315
+ - spec/vagrant-conoha/action/resume_server_spec.rb
316
+ - spec/vagrant-conoha/action/start_server_spec.rb
317
+ - spec/vagrant-conoha/action/stop_server_spec.rb
318
+ - spec/vagrant-conoha/action/suspend_server_spec.rb
319
+ - spec/vagrant-conoha/action/sync_folders_spec.rb
320
+ - spec/vagrant-conoha/action/wait_accessible_spec.rb
321
+ - spec/vagrant-conoha/action/wait_active_spec.rb
322
+ - spec/vagrant-conoha/action/wait_stop_spec.rb
323
+ - spec/vagrant-conoha/action_spec.rb
324
+ - spec/vagrant-conoha/client/cinder_spec.rb
325
+ - spec/vagrant-conoha/client/glance_spec.rb
326
+ - spec/vagrant-conoha/client/heat_spec.rb
327
+ - spec/vagrant-conoha/client/keystone_spec.rb
328
+ - spec/vagrant-conoha/client/neutron_spec.rb
329
+ - spec/vagrant-conoha/client/nova_spec.rb
330
+ - spec/vagrant-conoha/client/utils_spec.rb
331
+ - spec/vagrant-conoha/command/flavor_list_spec.rb
332
+ - spec/vagrant-conoha/command/image_list_spec.rb
333
+ - spec/vagrant-conoha/command/network_list_spec.rb
334
+ - spec/vagrant-conoha/command/reset_spec.rb
335
+ - spec/vagrant-conoha/command/subnet_list_spec.rb
336
+ - spec/vagrant-conoha/command/volume_list_spec.rb
337
+ - spec/vagrant-conoha/config_resolver_spec.rb
338
+ - spec/vagrant-conoha/config_spec.rb
339
+ - spec/vagrant-conoha/e2e_spec.rb.save
340
+ - spec/vagrant-conoha/provider_spec.rb
341
+ - spec/vagrant-conoha/spec_helper.rb
342
+ - spec/vagrant-conoha/utils_spec.rb
343
+ - spec/vagrant-conoha/version_checker_spec.rb