hammer_cli_foreman_leapp 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 434c0eb5048164192dbfd7ab676fdf31e693f6fcc7625236fb9342567b205457
4
- data.tar.gz: d31c3f77da5416b8d0a898b7cd0978733a6a348fac2289aee45565b57329f3ba
3
+ metadata.gz: '008f142e46ca7067bf83a325e7df0f23136ff60f77dfe0a8db733ad96e2ea348'
4
+ data.tar.gz: bc1e2ec8bc2535c5132a07b76a9ee7abb0a9eb9aa675b1ce57c541bdb7c71613
5
5
  SHA512:
6
- metadata.gz: 19e5f164d97f9dc498992b12f0469c91f746723e231a4c772a49b8443311e3824d93f1d7c5a8ac1a88736a33791f650fa81fdf600b53894549df0b5e6bcd5bf7
7
- data.tar.gz: dbe7e6eb5a887c9a6afe51222bd85a50bb3f7ff3ce77bafd4b2108231233713bcdb9a0db8ca9a864614604492b57bebb537eba6f2cd9832234b1f9a498f7cc28
6
+ metadata.gz: 2d896ca366b8a955220af13b327f43c03bb40276435a0b5071bc0c1853e7a4d5e8754ddc47a176b73a9329e043b2dcd4b64c51a300a08f708c82b593555b1b29
7
+ data.tar.gz: 138a69d3f16f37f0cebdcab4b733d224103dead06e3ec99ada1d070a93ff6f4fb3036d8b3d8acf86ffbc38b27cb6d39b00274d025ce5e72224b1ddcb38e2b867
data/README.md CHANGED
@@ -8,9 +8,9 @@ This Hammer CLI plugin contains set of commands for [foreman_leapp](
8
8
 
9
9
  This is the list of which version of Foreman Leapp is needed to which version of this plugin.
10
10
 
11
- | hammer_cli_foreman_leapp | 1.0.0 |
11
+ | hammer_cli_foreman_leapp | 0.1.0 |
12
12
  |--------------------------|-------|
13
- | foreman_leapp | 1.0.0 |
13
+ | foreman_leapp | 0.1.0 |
14
14
 
15
15
  ## Installation
16
16
 
@@ -7,4 +7,10 @@ require 'hammer_cli_foreman_leapp/version'
7
7
  require 'hammer_cli_foreman_leapp/preupgrade_reports'
8
8
 
9
9
  module HammerCLIForemanLeapp
10
+ HammerCLI::MainCommand.lazy_subcommand(
11
+ 'preupgrade-report',
12
+ 'Manage Leapp Preupgrade reports',
13
+ 'HammerCLIForemanLeapp::PreupgradeReportsCommand',
14
+ 'hammer_cli_foreman_leapp/preupgrade_reports'
15
+ )
10
16
  end
@@ -2,5 +2,43 @@
2
2
 
3
3
  module HammerCLIForemanLeapp
4
4
  class PreupgradeReportsCommand < HammerCLIForeman::Command
5
+ resource :preupgrade_reports
6
+
7
+ class ListCommand < HammerCLIForeman::ListCommand
8
+ output do
9
+ field :id, _('Id')
10
+ field :reported_at, _('Reported at'), Fields::Date
11
+ field :job_invocation_id, _('Job Invocation Id')
12
+ field :host_id, _('Host Id')
13
+ end
14
+
15
+ build_options
16
+ end
17
+
18
+ class InfoCommand < HammerCLIForeman::InfoCommand
19
+ output PreupgradeReportsCommand::ListCommand.output_definition do
20
+ collection :preupgrade_report_entries, _('Entries'), hide_blank: true do
21
+ field :id, _('Id')
22
+ field :hostname, _('Host name')
23
+ field :title, _('Title')
24
+ field :actor, _('Actor')
25
+ field :audience, _('Audience')
26
+ field :severity, _('Severity')
27
+ field :tags, _('Tags'), Fields::List
28
+ field :summary, _('Summary'), Fields::Text
29
+ end
30
+ end
31
+
32
+ build_options
33
+ end
34
+
35
+ class JobInvocationCommand < HammerCLIForeman::ListCommand
36
+ action :job_invocation
37
+ command_name 'job-invocation'
38
+ output PreupgradeReportsCommand::ListCommand.output_definition
39
+ build_options
40
+ end
41
+
42
+ autoload_subcommands
5
43
  end
6
44
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module HammerCLIForemanLeapp
4
4
  def self.version
5
- @version ||= Gem::Version.new '0.0.1'
5
+ @version ||= Gem::Version.new '0.1.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hammer_cli_foreman_leapp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Foreman Leapp team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-05 00:00:00.000000000 Z
11
+ date: 2020-05-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: hammer_cli_foreman