crowbar-client 2.1.0 → 2.2.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/crowbar/client.rb +6 -0
- data/lib/crowbar/client/app.rb +3 -0
- data/lib/crowbar/client/app/barclamp.rb +2 -2
- data/lib/crowbar/client/app/base.rb +24 -1
- data/lib/crowbar/client/app/batch.rb +4 -4
- data/lib/crowbar/client/app/entry.rb +4 -0
- data/lib/crowbar/client/app/host_ip.rb +4 -4
- data/lib/crowbar/client/app/installer.rb +103 -0
- data/lib/crowbar/client/app/interface.rb +4 -4
- data/lib/crowbar/client/app/node.rb +34 -34
- data/lib/crowbar/client/app/proposal.rb +14 -14
- data/lib/crowbar/client/app/repository.rb +10 -10
- data/lib/crowbar/client/app/reset.rb +4 -4
- data/lib/crowbar/client/app/role.rb +4 -4
- data/lib/crowbar/client/app/server.rb +2 -2
- data/lib/crowbar/client/app/virtual_ip.rb +4 -4
- data/lib/crowbar/client/command.rb +3 -0
- data/lib/crowbar/client/command/installer.rb +29 -0
- data/lib/crowbar/client/command/installer/start.rb +50 -0
- data/lib/crowbar/client/command/installer/status.rb +68 -0
- data/lib/crowbar/client/command/proposal/create.rb +19 -5
- data/lib/crowbar/client/command/proposal/edit.rb +19 -5
- data/lib/crowbar/client/request.rb +3 -0
- data/lib/crowbar/client/request/base.rb +12 -0
- data/lib/crowbar/client/request/installer.rb +29 -0
- data/lib/crowbar/client/request/installer/start.rb +44 -0
- data/lib/crowbar/client/request/installer/status.rb +36 -0
- data/lib/crowbar/client/version.rb +1 -1
- data/spec/crowbar/client/command/installer/start_spec.rb +40 -0
- data/spec/crowbar/client/command/installer/status_spec.rb +39 -0
- data/spec/crowbar/client/request/installer/start_spec.rb +55 -0
- data/spec/crowbar/client/request/installer/status_spec.rb +65 -0
- data/spec/support/request_examples.rb +4 -0
- metadata +84 -69
@@ -59,6 +59,18 @@ module Crowbar
|
|
59
59
|
params
|
60
60
|
)
|
61
61
|
|
62
|
+
case result.code
|
63
|
+
when 500
|
64
|
+
raise InternalServerError,
|
65
|
+
"An internal error occured"
|
66
|
+
when 401
|
67
|
+
raise NotAuthorizedError,
|
68
|
+
"User is not authorized"
|
69
|
+
when 403
|
70
|
+
raise NotAuthorizedError,
|
71
|
+
"User access is forbidden"
|
72
|
+
end
|
73
|
+
|
62
74
|
if block_given?
|
63
75
|
yield result
|
64
76
|
else
|
@@ -0,0 +1,29 @@
|
|
1
|
+
#
|
2
|
+
# Copyright 2015, SUSE Linux GmbH
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
#
|
16
|
+
|
17
|
+
module Crowbar
|
18
|
+
module Client
|
19
|
+
module Request
|
20
|
+
module Installer
|
21
|
+
autoload :Status,
|
22
|
+
File.expand_path("../installer/status", __FILE__)
|
23
|
+
|
24
|
+
autoload :Start,
|
25
|
+
File.expand_path("../installer/start", __FILE__)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
#
|
2
|
+
# Copyright 2015, SUSE Linux GmbH
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
#
|
16
|
+
|
17
|
+
require "easy_diff"
|
18
|
+
|
19
|
+
module Crowbar
|
20
|
+
module Client
|
21
|
+
module Request
|
22
|
+
module Installer
|
23
|
+
class Start < Base
|
24
|
+
def content
|
25
|
+
super.easy_merge!(
|
26
|
+
force: attrs.force
|
27
|
+
)
|
28
|
+
end
|
29
|
+
|
30
|
+
def method
|
31
|
+
:post
|
32
|
+
end
|
33
|
+
|
34
|
+
def url
|
35
|
+
[
|
36
|
+
"installer",
|
37
|
+
"start"
|
38
|
+
].join("/")
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
#
|
2
|
+
# Copyright 2015, SUSE Linux GmbH
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
#
|
16
|
+
|
17
|
+
module Crowbar
|
18
|
+
module Client
|
19
|
+
module Request
|
20
|
+
module Installer
|
21
|
+
class Status < Base
|
22
|
+
def method
|
23
|
+
:get
|
24
|
+
end
|
25
|
+
|
26
|
+
def url
|
27
|
+
[
|
28
|
+
"installer",
|
29
|
+
"status"
|
30
|
+
].join("/")
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
#
|
2
|
+
# Copyright 2015, SUSE Linux GmbH
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
#
|
16
|
+
|
17
|
+
require_relative "../../../../spec_helper"
|
18
|
+
|
19
|
+
describe "Crowbar::Client::Command::Installer::Start" do
|
20
|
+
include_context "command_context"
|
21
|
+
|
22
|
+
subject do
|
23
|
+
::Crowbar::Client::Command::Installer::Start.new(
|
24
|
+
stdin,
|
25
|
+
stdout,
|
26
|
+
stderr,
|
27
|
+
force: false
|
28
|
+
)
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should always return a request class" do
|
32
|
+
expect(subject.request).to(
|
33
|
+
be_a(
|
34
|
+
::Crowbar::Client::Request::Installer::Start
|
35
|
+
)
|
36
|
+
)
|
37
|
+
end
|
38
|
+
|
39
|
+
pending
|
40
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
#
|
2
|
+
# Copyright 2015, SUSE Linux GmbH
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
#
|
16
|
+
|
17
|
+
require_relative "../../../../spec_helper"
|
18
|
+
|
19
|
+
describe "Crowbar::Client::Command::Installer::Status" do
|
20
|
+
include_context "command_context"
|
21
|
+
|
22
|
+
subject do
|
23
|
+
::Crowbar::Client::Command::Installer::Status.new(
|
24
|
+
stdin,
|
25
|
+
stdout,
|
26
|
+
stderr
|
27
|
+
)
|
28
|
+
end
|
29
|
+
|
30
|
+
it "should always return a request class" do
|
31
|
+
expect(subject.request).to(
|
32
|
+
be_a(
|
33
|
+
::Crowbar::Client::Request::Installer::Status
|
34
|
+
)
|
35
|
+
)
|
36
|
+
end
|
37
|
+
|
38
|
+
pending
|
39
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
|
2
|
+
#
|
3
|
+
# Copyright 2015, SUSE Linux GmbH
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
#
|
17
|
+
|
18
|
+
require_relative "../../../../spec_helper"
|
19
|
+
|
20
|
+
describe "Crowbar::Client::Request::Installer::Start" do
|
21
|
+
it_behaves_like "a request class" do
|
22
|
+
subject do
|
23
|
+
::Crowbar::Client::Request::Installer::Start.new(
|
24
|
+
attrs
|
25
|
+
)
|
26
|
+
end
|
27
|
+
|
28
|
+
let!(:attrs) do
|
29
|
+
{
|
30
|
+
force: false
|
31
|
+
}
|
32
|
+
end
|
33
|
+
|
34
|
+
let!(:params) do
|
35
|
+
{
|
36
|
+
force: false
|
37
|
+
}
|
38
|
+
end
|
39
|
+
|
40
|
+
let!(:method) do
|
41
|
+
:post
|
42
|
+
end
|
43
|
+
|
44
|
+
let!(:url) do
|
45
|
+
"installer/start"
|
46
|
+
end
|
47
|
+
|
48
|
+
let!(:headers) do
|
49
|
+
{
|
50
|
+
"Content-Type" => "application/json",
|
51
|
+
"Accept" => "application/json"
|
52
|
+
}
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
#
|
2
|
+
# Copyright 2015, SUSE Linux GmbH
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
#
|
16
|
+
|
17
|
+
require_relative "../../../../spec_helper"
|
18
|
+
|
19
|
+
describe "Crowbar::Client::Request::Installer::Status" do
|
20
|
+
it_behaves_like "a request class" do
|
21
|
+
subject do
|
22
|
+
::Crowbar::Client::Request::Installer::Status.new(
|
23
|
+
attrs
|
24
|
+
)
|
25
|
+
end
|
26
|
+
|
27
|
+
let!(:attrs) do
|
28
|
+
{
|
29
|
+
"steps" => [
|
30
|
+
"pre_sanity_checks",
|
31
|
+
"run_services",
|
32
|
+
"initial_chef_client",
|
33
|
+
"barclamp_install",
|
34
|
+
"bootstrap_crowbar_setup",
|
35
|
+
"apply_crowbar_config",
|
36
|
+
"transition_crowbar",
|
37
|
+
"chef_client_daemon",
|
38
|
+
"post_sanity_checks"
|
39
|
+
],
|
40
|
+
"failed" => false,
|
41
|
+
"success" => true,
|
42
|
+
"installing" => false
|
43
|
+
}
|
44
|
+
end
|
45
|
+
|
46
|
+
let!(:params) do
|
47
|
+
{}
|
48
|
+
end
|
49
|
+
|
50
|
+
let!(:method) do
|
51
|
+
:get
|
52
|
+
end
|
53
|
+
|
54
|
+
let!(:url) do
|
55
|
+
"installer/status"
|
56
|
+
end
|
57
|
+
|
58
|
+
let!(:headers) do
|
59
|
+
{
|
60
|
+
"Content-Type" => "application/json",
|
61
|
+
"Accept" => "application/json"
|
62
|
+
}
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: crowbar-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thomas Boerger
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-12-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -213,6 +213,7 @@ files:
|
|
213
213
|
- lib/crowbar/client/app/batch.rb
|
214
214
|
- lib/crowbar/client/app/entry.rb
|
215
215
|
- lib/crowbar/client/app/host_ip.rb
|
216
|
+
- lib/crowbar/client/app/installer.rb
|
216
217
|
- lib/crowbar/client/app/interface.rb
|
217
218
|
- lib/crowbar/client/app/network.rb
|
218
219
|
- lib/crowbar/client/app/node.rb
|
@@ -232,6 +233,9 @@ files:
|
|
232
233
|
- lib/crowbar/client/command/host_ip.rb
|
233
234
|
- lib/crowbar/client/command/host_ip/allocate.rb
|
234
235
|
- lib/crowbar/client/command/host_ip/deallocate.rb
|
236
|
+
- lib/crowbar/client/command/installer.rb
|
237
|
+
- lib/crowbar/client/command/installer/start.rb
|
238
|
+
- lib/crowbar/client/command/installer/status.rb
|
235
239
|
- lib/crowbar/client/command/interface.rb
|
236
240
|
- lib/crowbar/client/command/interface/disable.rb
|
237
241
|
- lib/crowbar/client/command/interface/enable.rb
|
@@ -303,6 +307,9 @@ files:
|
|
303
307
|
- lib/crowbar/client/request/host_ip.rb
|
304
308
|
- lib/crowbar/client/request/host_ip/allocate.rb
|
305
309
|
- lib/crowbar/client/request/host_ip/deallocate.rb
|
310
|
+
- lib/crowbar/client/request/installer.rb
|
311
|
+
- lib/crowbar/client/request/installer/start.rb
|
312
|
+
- lib/crowbar/client/request/installer/status.rb
|
306
313
|
- lib/crowbar/client/request/interface.rb
|
307
314
|
- lib/crowbar/client/request/interface/disable.rb
|
308
315
|
- lib/crowbar/client/request/interface/enable.rb
|
@@ -352,6 +359,8 @@ files:
|
|
352
359
|
- spec/crowbar/client/command/batch/export_spec.rb
|
353
360
|
- spec/crowbar/client/command/host_ip/allocate_spec.rb
|
354
361
|
- spec/crowbar/client/command/host_ip/deallocate_spec.rb
|
362
|
+
- spec/crowbar/client/command/installer/start_spec.rb
|
363
|
+
- spec/crowbar/client/command/installer/status_spec.rb
|
355
364
|
- spec/crowbar/client/command/interface/disable_spec.rb
|
356
365
|
- spec/crowbar/client/command/interface/enable_spec.rb
|
357
366
|
- spec/crowbar/client/command/node/allocate_spec.rb
|
@@ -401,6 +410,8 @@ files:
|
|
401
410
|
- spec/crowbar/client/request/batch/export_spec.rb
|
402
411
|
- spec/crowbar/client/request/host_ip/allocate_spec.rb
|
403
412
|
- spec/crowbar/client/request/host_ip/deallocate_spec.rb
|
413
|
+
- spec/crowbar/client/request/installer/start_spec.rb
|
414
|
+
- spec/crowbar/client/request/installer/status_spec.rb
|
404
415
|
- spec/crowbar/client/request/interface/disable_spec.rb
|
405
416
|
- spec/crowbar/client/request/interface/enable_spec.rb
|
406
417
|
- spec/crowbar/client/request/node/action_spec.rb
|
@@ -463,96 +474,100 @@ signing_key:
|
|
463
474
|
specification_version: 4
|
464
475
|
summary: Crowbar commandline client
|
465
476
|
test_files:
|
477
|
+
- spec/spec_helper.rb
|
466
478
|
- spec/support/request_examples.rb
|
467
479
|
- spec/support/command_context.rb
|
480
|
+
- spec/crowbar/client/util/runner_spec.rb
|
481
|
+
- spec/crowbar/client/util/editor_spec.rb
|
468
482
|
- spec/crowbar/client/app_spec.rb
|
469
|
-
- spec/crowbar/client/formatter/nested_spec.rb
|
470
|
-
- spec/crowbar/client/formatter/array_spec.rb
|
471
|
-
- spec/crowbar/client/formatter/hash_spec.rb
|
472
|
-
- spec/crowbar/client/filter/array_spec.rb
|
473
483
|
- spec/crowbar/client/filter/hash_spec.rb
|
474
484
|
- spec/crowbar/client/filter/subset_spec.rb
|
475
|
-
- spec/crowbar/client/
|
476
|
-
- spec/crowbar/client/
|
477
|
-
- spec/crowbar/client/
|
478
|
-
- spec/crowbar/client/
|
479
|
-
- spec/crowbar/client/command/
|
480
|
-
- spec/crowbar/client/command/repository/activate_all_spec.rb
|
481
|
-
- spec/crowbar/client/command/repository/deactivate_spec.rb
|
482
|
-
- spec/crowbar/client/command/repository/list_spec.rb
|
483
|
-
- spec/crowbar/client/command/repository/deactivate_all_spec.rb
|
484
|
-
- spec/crowbar/client/command/repository/activate_spec.rb
|
485
|
-
- spec/crowbar/client/command/role/show_spec.rb
|
486
|
-
- spec/crowbar/client/command/role/list_spec.rb
|
487
|
-
- spec/crowbar/client/command/barclamp/list_spec.rb
|
485
|
+
- spec/crowbar/client/filter/array_spec.rb
|
486
|
+
- spec/crowbar/client/formatter/nested_spec.rb
|
487
|
+
- spec/crowbar/client/formatter/hash_spec.rb
|
488
|
+
- spec/crowbar/client/formatter/array_spec.rb
|
489
|
+
- spec/crowbar/client/command/proposal/list_spec.rb
|
488
490
|
- spec/crowbar/client/command/proposal/show_spec.rb
|
489
|
-
- spec/crowbar/client/command/proposal/dequeue_spec.rb
|
490
|
-
- spec/crowbar/client/command/proposal/delete_spec.rb
|
491
491
|
- spec/crowbar/client/command/proposal/edit_spec.rb
|
492
|
-
- spec/crowbar/client/command/proposal/
|
492
|
+
- spec/crowbar/client/command/proposal/delete_spec.rb
|
493
493
|
- spec/crowbar/client/command/proposal/commit_spec.rb
|
494
|
+
- spec/crowbar/client/command/proposal/dequeue_spec.rb
|
494
495
|
- spec/crowbar/client/command/proposal/create_spec.rb
|
495
|
-
- spec/crowbar/client/command/
|
496
|
+
- spec/crowbar/client/command/role/list_spec.rb
|
497
|
+
- spec/crowbar/client/command/role/show_spec.rb
|
498
|
+
- spec/crowbar/client/command/interface/disable_spec.rb
|
499
|
+
- spec/crowbar/client/command/interface/enable_spec.rb
|
500
|
+
- spec/crowbar/client/command/barclamp/list_spec.rb
|
501
|
+
- spec/crowbar/client/command/host_ip/deallocate_spec.rb
|
502
|
+
- spec/crowbar/client/command/host_ip/allocate_spec.rb
|
496
503
|
- spec/crowbar/client/command/virtual_ip/deallocate_spec.rb
|
497
|
-
- spec/crowbar/client/command/
|
498
|
-
- spec/crowbar/client/command/
|
499
|
-
- spec/crowbar/client/command/
|
500
|
-
- spec/crowbar/client/command/
|
501
|
-
- spec/crowbar/client/command/
|
502
|
-
- spec/crowbar/client/command/
|
503
|
-
- spec/crowbar/client/command/
|
504
|
+
- spec/crowbar/client/command/virtual_ip/allocate_spec.rb
|
505
|
+
- spec/crowbar/client/command/server/api_spec.rb
|
506
|
+
- spec/crowbar/client/command/installer/status_spec.rb
|
507
|
+
- spec/crowbar/client/command/installer/start_spec.rb
|
508
|
+
- spec/crowbar/client/command/repository/list_spec.rb
|
509
|
+
- spec/crowbar/client/command/repository/activate_spec.rb
|
510
|
+
- spec/crowbar/client/command/repository/deactivate_spec.rb
|
511
|
+
- spec/crowbar/client/command/repository/deactivate_all_spec.rb
|
512
|
+
- spec/crowbar/client/command/repository/activate_all_spec.rb
|
513
|
+
- spec/crowbar/client/command/node/list_spec.rb
|
514
|
+
- spec/crowbar/client/command/node/identify_spec.rb
|
504
515
|
- spec/crowbar/client/command/node/poweroff_spec.rb
|
516
|
+
- spec/crowbar/client/command/node/show_spec.rb
|
505
517
|
- spec/crowbar/client/command/node/hardware_spec.rb
|
506
|
-
- spec/crowbar/client/command/node/identify_spec.rb
|
507
|
-
- spec/crowbar/client/command/node/reset_spec.rb
|
508
|
-
- spec/crowbar/client/command/node/delete_spec.rb
|
509
518
|
- spec/crowbar/client/command/node/rename_spec.rb
|
510
|
-
- spec/crowbar/client/command/node/
|
519
|
+
- spec/crowbar/client/command/node/status_spec.rb
|
520
|
+
- spec/crowbar/client/command/node/reinstall_spec.rb
|
511
521
|
- spec/crowbar/client/command/node/poweron_spec.rb
|
512
|
-
- spec/crowbar/client/command/node/
|
522
|
+
- spec/crowbar/client/command/node/role_spec.rb
|
523
|
+
- spec/crowbar/client/command/node/delete_spec.rb
|
524
|
+
- spec/crowbar/client/command/node/transition_spec.rb
|
525
|
+
- spec/crowbar/client/command/node/powercycle_spec.rb
|
513
526
|
- spec/crowbar/client/command/node/reboot_spec.rb
|
514
|
-
- spec/crowbar/client/command/node/
|
527
|
+
- spec/crowbar/client/command/node/allocate_spec.rb
|
528
|
+
- spec/crowbar/client/command/node/reset_spec.rb
|
515
529
|
- spec/crowbar/client/command/node/shutdown_spec.rb
|
516
|
-
- spec/crowbar/client/command/
|
517
|
-
- spec/crowbar/client/command/
|
518
|
-
- spec/crowbar/client/command/
|
519
|
-
- spec/crowbar/client/command/
|
520
|
-
- spec/crowbar/client/request/
|
521
|
-
- spec/crowbar/client/request/host_ip/allocate_spec.rb
|
522
|
-
- spec/crowbar/client/request/host_ip/deallocate_spec.rb
|
523
|
-
- spec/crowbar/client/request/server/api_spec.rb
|
524
|
-
- spec/crowbar/client/request/repository/activate_all_spec.rb
|
525
|
-
- spec/crowbar/client/request/repository/deactivate_spec.rb
|
526
|
-
- spec/crowbar/client/request/repository/list_spec.rb
|
527
|
-
- spec/crowbar/client/request/repository/deactivate_all_spec.rb
|
528
|
-
- spec/crowbar/client/request/repository/activate_spec.rb
|
529
|
-
- spec/crowbar/client/request/role/show_spec.rb
|
530
|
-
- spec/crowbar/client/request/role/list_spec.rb
|
531
|
-
- spec/crowbar/client/request/barclamp/list_spec.rb
|
530
|
+
- spec/crowbar/client/command/batch/export_spec.rb
|
531
|
+
- spec/crowbar/client/command/batch/build_spec.rb
|
532
|
+
- spec/crowbar/client/command/reset/nodes_spec.rb
|
533
|
+
- spec/crowbar/client/command/reset/proposal_spec.rb
|
534
|
+
- spec/crowbar/client/request/proposal/list_spec.rb
|
532
535
|
- spec/crowbar/client/request/proposal/show_spec.rb
|
533
|
-
- spec/crowbar/client/request/proposal/dequeue_spec.rb
|
534
|
-
- spec/crowbar/client/request/proposal/template_spec.rb
|
535
|
-
- spec/crowbar/client/request/proposal/delete_spec.rb
|
536
536
|
- spec/crowbar/client/request/proposal/edit_spec.rb
|
537
|
-
- spec/crowbar/client/request/proposal/
|
537
|
+
- spec/crowbar/client/request/proposal/delete_spec.rb
|
538
538
|
- spec/crowbar/client/request/proposal/commit_spec.rb
|
539
|
+
- spec/crowbar/client/request/proposal/template_spec.rb
|
540
|
+
- spec/crowbar/client/request/proposal/dequeue_spec.rb
|
539
541
|
- spec/crowbar/client/request/proposal/create_spec.rb
|
540
|
-
- spec/crowbar/client/request/
|
542
|
+
- spec/crowbar/client/request/role/list_spec.rb
|
543
|
+
- spec/crowbar/client/request/role/show_spec.rb
|
544
|
+
- spec/crowbar/client/request/interface/disable_spec.rb
|
545
|
+
- spec/crowbar/client/request/interface/enable_spec.rb
|
546
|
+
- spec/crowbar/client/request/barclamp/list_spec.rb
|
547
|
+
- spec/crowbar/client/request/host_ip/deallocate_spec.rb
|
548
|
+
- spec/crowbar/client/request/host_ip/allocate_spec.rb
|
541
549
|
- spec/crowbar/client/request/virtual_ip/deallocate_spec.rb
|
542
|
-
- spec/crowbar/client/request/
|
543
|
-
- spec/crowbar/client/request/
|
544
|
-
- spec/crowbar/client/request/
|
545
|
-
- spec/crowbar/client/request/
|
546
|
-
- spec/crowbar/client/request/
|
547
|
-
- spec/crowbar/client/request/
|
550
|
+
- spec/crowbar/client/request/virtual_ip/allocate_spec.rb
|
551
|
+
- spec/crowbar/client/request/server/api_spec.rb
|
552
|
+
- spec/crowbar/client/request/party_spec.rb
|
553
|
+
- spec/crowbar/client/request/installer/status_spec.rb
|
554
|
+
- spec/crowbar/client/request/installer/start_spec.rb
|
555
|
+
- spec/crowbar/client/request/repository/list_spec.rb
|
556
|
+
- spec/crowbar/client/request/repository/activate_spec.rb
|
557
|
+
- spec/crowbar/client/request/repository/deactivate_spec.rb
|
558
|
+
- spec/crowbar/client/request/repository/deactivate_all_spec.rb
|
559
|
+
- spec/crowbar/client/request/repository/activate_all_spec.rb
|
560
|
+
- spec/crowbar/client/request/node/list_spec.rb
|
548
561
|
- spec/crowbar/client/request/node/show_spec.rb
|
549
|
-
- spec/crowbar/client/request/node/delete_spec.rb
|
550
562
|
- spec/crowbar/client/request/node/rename_spec.rb
|
551
|
-
- spec/crowbar/client/request/node/list_spec.rb
|
552
|
-
- spec/crowbar/client/request/node/action_spec.rb
|
553
563
|
- spec/crowbar/client/request/node/status_spec.rb
|
554
|
-
- spec/crowbar/client/request/
|
555
|
-
- spec/crowbar/client/request/
|
564
|
+
- spec/crowbar/client/request/node/role_spec.rb
|
565
|
+
- spec/crowbar/client/request/node/delete_spec.rb
|
566
|
+
- spec/crowbar/client/request/node/transition_spec.rb
|
567
|
+
- spec/crowbar/client/request/node/action_spec.rb
|
568
|
+
- spec/crowbar/client/request/batch/export_spec.rb
|
569
|
+
- spec/crowbar/client/request/batch/build_spec.rb
|
570
|
+
- spec/crowbar/client/request/reset/nodes_spec.rb
|
571
|
+
- spec/crowbar/client/request/reset/proposal_spec.rb
|
556
572
|
- spec/crowbar/client_spec.rb
|
557
|
-
- spec/spec_helper.rb
|
558
573
|
has_rdoc:
|