foreman_rh_cloud 2.0.14 → 2.0.18.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -0
  3. data/app/controllers/foreman_inventory_upload/accounts_controller.rb +2 -2
  4. data/app/controllers/foreman_inventory_upload/uploads_controller.rb +1 -8
  5. data/app/models/setting/rh_cloud.rb +5 -5
  6. data/config/Gemfile.lock.gh_test +817 -0
  7. data/config/database.yml.example +17 -0
  8. data/config/package-lock.json.gh_test +36317 -0
  9. data/db/migrate/20210307000001_add_unique_to_insights_facet.foreman_rh_cloud.rb +11 -0
  10. data/lib/foreman_inventory_upload.rb +3 -2
  11. data/lib/foreman_inventory_upload/generators/archived_report.rb +1 -1
  12. data/lib/foreman_inventory_upload/generators/json_stream.rb +1 -1
  13. data/lib/foreman_inventory_upload/generators/slice.rb +3 -3
  14. data/lib/foreman_rh_cloud/engine.rb +0 -1
  15. data/lib/foreman_rh_cloud/version.rb +1 -1
  16. data/lib/tasks/rh_cloud_inventory.rake +23 -0
  17. data/package.json +1 -1
  18. data/test/controllers/accounts_controller_test.rb +1 -1
  19. data/test/unit/slice_generator_test.rb +30 -4
  20. data/webpack/ForemanInventoryUpload/Components/AccountList/AccountList.fixtures.js +3 -3
  21. data/webpack/ForemanInventoryUpload/Components/AccountList/AccountList.js +7 -7
  22. data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListHelper.js +6 -6
  23. data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItem/ListItem.fixtures.js +10 -1
  24. data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItem/ListItem.js +7 -7
  25. data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItem/__tests__/__snapshots__/ListItem.test.js.snap +11 -8
  26. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListHelper.test.js +3 -3
  27. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountList.test.js.snap +6 -6
  28. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListActions.test.js.snap +3 -3
  29. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListReducer.test.js.snap +3 -3
  30. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListSelectors.test.js.snap +6 -6
  31. data/webpack/ForemanInventoryUpload/Components/Dashboard/DashboardActions.js +1 -1
  32. data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardActions.test.js +4 -4
  33. metadata +19 -15
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 778b0d71a8930862a9ea89c96b28024ef830b62bfe09c393da68200884bf1581
4
- data.tar.gz: '01600923d9766697d70c1739a1e8a2257357804c01200b5571f8b63464401f8e'
3
+ metadata.gz: 4e0cb65a3f6b1e94ef76531b38c7553a4f935d38cea6a26567f78eb563451a3d
4
+ data.tar.gz: 0f15f66bbf6595fc7049606a1ad19c5cedb8a9181f4abd47d1897c72db25e148
5
5
  SHA512:
6
- metadata.gz: e48907c9626cbf815b00bc257a45801f5a55d0f5f6e797cf7d11fadd549e822580d420e60004efa8e92aabb75c1c3b799ecda447c06fa53a6cc7a36a72160747
7
- data.tar.gz: 853e77b02847333267442716d2c4909cd9738cd1dbdcfa7a063b0a09859b90832f73f75cd2db78565ffaffba000aa0fdd8ea6924ad98d74f554a998f17cd5964
6
+ metadata.gz: 0db95fe4391d434965539c5a379a318e015d00f3b251af3a6ea03eb57db024fad68a98c804f1e7fe185f8f787b28cc2ec24e4e63d1ac7e0d0bb42aa73ed4f3a0
7
+ data.tar.gz: 6d7583b031a7bed576456a8eeed8b8e948a5af9e243c93975be51801f862211a7a311a683300c23da696ca4d0e06dc4339bf4d5c70914dd840b6c52475c036bc
data/README.md CHANGED
@@ -19,10 +19,23 @@ In UI: Configure -> Inventory Upload -> Restart
19
19
 
20
20
  From command-line:
21
21
 
22
+ # generate and upload report for all organizations
23
+ /usr/sbin/foreman-rake rh_cloud_inventory:report:generate_upload
24
+
25
+ # generate and upload report for specific organization
26
+ export organization_id=1
27
+ /usr/sbin/foreman-rake rh_cloud_inventory:report:generate_upload
28
+
29
+ # generate report for specific organization (don't upload)
22
30
  export organization_id=1
23
31
  export target=/var/lib/foreman/red_hat_inventory/generated_reports/
24
32
  /usr/sbin/foreman-rake rh_cloud_inventory:report:generate
25
33
 
34
+ # upload previously generated report (needs to be named 'report_for_#{organization_id}.tar.gz')
35
+ export organization_id=1
36
+ export target=/var/lib/foreman/red_hat_inventory/generated_reports/
37
+ /usr/sbin/foreman-rake rh_cloud_inventory:report:upload
38
+
26
39
  #### Fetch hosts remediation data
27
40
 
28
41
  In UI: Configure -> Insights -> Sync now
@@ -10,11 +10,11 @@ module ForemanInventoryUpload
10
10
  upload_report_status = status_for(id, ForemanInventoryUpload::Async::UploadReportJob)
11
11
 
12
12
  [
13
- id,
13
+ label,
14
14
  {
15
15
  generate_report_status: generate_report_status,
16
16
  upload_report_status: upload_report_status,
17
- label: label,
17
+ id: id,
18
18
  },
19
19
  ]
20
20
  end
@@ -14,14 +14,7 @@ module ForemanInventoryUpload
14
14
  files = Dir["{#{ForemanInventoryUpload.uploads_file_path(filename)},#{ForemanInventoryUpload.done_file_path(filename)}}"]
15
15
 
16
16
  return send_file files.first, disposition: 'attachment', filename: filename unless files.empty?
17
- throw_flash_error "File doesn't exist"
18
- end
19
-
20
- def throw_flash_error(message)
21
- process_error(
22
- :redirect => foreman_inventory_upload_index_path,
23
- :error_msg => message
24
- )
17
+ raise ::Foreman::Exception.new("The report file doesn't exist")
25
18
  end
26
19
 
27
20
  def auto_upload
@@ -3,12 +3,12 @@ class Setting::RhCloud < Setting
3
3
  return unless ActiveRecord::Base.connection.table_exists?('settings')
4
4
  return unless super
5
5
  [
6
- set('allow_auto_inventory_upload', N_('Allow automatic upload of the host inventory to the Red Hat cloud'), false),
7
- set('allow_auto_insights_sync', N_('Allow recommendations synchronization from Red Hat cloud'), false),
8
- set('obfuscate_inventory_hostnames', N_('Obfuscate host names sent to Red Hat cloud'), false),
9
- set('obfuscate_inventory_ips', N_('Obfuscate ip addresses sent to Red Hat cloud'), false),
6
+ set('allow_auto_inventory_upload', N_('Allow automatic upload of the host inventory to the Red Hat cloud'), false, N_('Allow automatic inventory uploads')),
7
+ set('allow_auto_insights_sync', N_('Allow recommendations synchronization from Red Hat cloud'), false, N_('Allow recommendations synchronization')),
8
+ set('obfuscate_inventory_hostnames', N_('Obfuscate host names sent to Red Hat cloud'), false, N_('Obfuscate host names')),
9
+ set('obfuscate_inventory_ips', N_('Obfuscate ip addresses sent to Red Hat cloud'), false, N_('Obfuscate IPs')),
10
10
  set('rh_cloud_token', N_('Authentication token to Red Hat cloud services. Used to authenticate requests to cloud APIs'), 'DEFAULT', N_('Red Hat Cloud token'), nil, encrypted: true),
11
- set('exclude_installed_packages', N_('Exclude installed packages from Red Hat cloud inventory report'), false),
11
+ set('exclude_installed_packages', N_('Exclude installed packages from Red Hat cloud inventory report'), false, N_("Don't upload installed packages")),
12
12
  ]
13
13
  end
14
14
 
@@ -0,0 +1,817 @@
1
+ PATH
2
+ remote: ../foreman_rh_cloud
3
+ specs:
4
+ foreman_rh_cloud (2.0.14)
5
+ katello
6
+ redhat_access
7
+
8
+ PATH
9
+ remote: ../katello
10
+ specs:
11
+ katello (3.16.2)
12
+ activerecord-import
13
+ anemone
14
+ angular-rails-templates (~> 1.1.0)
15
+ apipie-rails (>= 0.5.14)
16
+ deface (>= 1.0.2, < 2.0.0)
17
+ dynflow (>= 1.2.0)
18
+ foreman-tasks (>= 0.14.1, <= 2.0.2)
19
+ fx (< 1.0)
20
+ gettext_i18n_rails
21
+ json
22
+ oauth
23
+ pulp_2to3_migration_client (>= 0.2.0b6, < 0.3.0)
24
+ pulp_ansible_client (> 0.1, < 0.2.0b15)
25
+ pulp_certguard_client (< 2.0)
26
+ pulp_container_client (>= 1.4.0, < 1.5.0)
27
+ pulp_file_client (>= 1.0.0, < 1.1.0)
28
+ pulp_rpm_client (>= 3.5.0, < 3.6.0)
29
+ pulpcore_client (>= 3.4.0, < 3.5.0)
30
+ rabl
31
+ rails
32
+ rest-client
33
+ runcible (>= 2.13.0, < 3.0.0)
34
+ stomp
35
+
36
+ GEM
37
+ remote: https://rubygems.org/
38
+ specs:
39
+ actioncable (6.0.3.4)
40
+ actionpack (= 6.0.3.4)
41
+ nio4r (~> 2.0)
42
+ websocket-driver (>= 0.6.1)
43
+ actionmailbox (6.0.3.4)
44
+ actionpack (= 6.0.3.4)
45
+ activejob (= 6.0.3.4)
46
+ activerecord (= 6.0.3.4)
47
+ activestorage (= 6.0.3.4)
48
+ activesupport (= 6.0.3.4)
49
+ mail (>= 2.7.1)
50
+ actionmailer (6.0.3.4)
51
+ actionpack (= 6.0.3.4)
52
+ actionview (= 6.0.3.4)
53
+ activejob (= 6.0.3.4)
54
+ mail (~> 2.5, >= 2.5.4)
55
+ rails-dom-testing (~> 2.0)
56
+ actionpack (6.0.3.4)
57
+ actionview (= 6.0.3.4)
58
+ activesupport (= 6.0.3.4)
59
+ rack (~> 2.0, >= 2.0.8)
60
+ rack-test (>= 0.6.3)
61
+ rails-dom-testing (~> 2.0)
62
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
63
+ actiontext (6.0.3.4)
64
+ actionpack (= 6.0.3.4)
65
+ activerecord (= 6.0.3.4)
66
+ activestorage (= 6.0.3.4)
67
+ activesupport (= 6.0.3.4)
68
+ nokogiri (>= 1.8.5)
69
+ actionview (6.0.3.4)
70
+ activesupport (= 6.0.3.4)
71
+ builder (~> 3.1)
72
+ erubi (~> 1.4)
73
+ rails-dom-testing (~> 2.0)
74
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
75
+ activejob (6.0.3.4)
76
+ activesupport (= 6.0.3.4)
77
+ globalid (>= 0.3.6)
78
+ activemodel (6.0.3.4)
79
+ activesupport (= 6.0.3.4)
80
+ activerecord (6.0.3.4)
81
+ activemodel (= 6.0.3.4)
82
+ activesupport (= 6.0.3.4)
83
+ activerecord-import (1.0.7)
84
+ activerecord (>= 3.2)
85
+ activerecord-nulldb-adapter (0.5.1)
86
+ activerecord (>= 5.2.0)
87
+ activerecord-session_store (1.1.3)
88
+ actionpack (>= 4.0)
89
+ activerecord (>= 4.0)
90
+ multi_json (~> 1.11, >= 1.11.2)
91
+ rack (>= 1.5.2, < 3)
92
+ railties (>= 4.0)
93
+ activestorage (6.0.3.4)
94
+ actionpack (= 6.0.3.4)
95
+ activejob (= 6.0.3.4)
96
+ activerecord (= 6.0.3.4)
97
+ marcel (~> 0.3.1)
98
+ activesupport (6.0.3.4)
99
+ concurrent-ruby (~> 1.0, >= 1.0.2)
100
+ i18n (>= 0.7, < 2)
101
+ minitest (~> 5.1)
102
+ tzinfo (~> 1.1)
103
+ zeitwerk (~> 2.2, >= 2.2.2)
104
+ addressable (2.7.0)
105
+ public_suffix (>= 2.0.2, < 5.0)
106
+ algebrick (0.7.5)
107
+ ancestry (3.2.1)
108
+ activerecord (>= 4.2.0)
109
+ anemone (0.7.2)
110
+ nokogiri (>= 1.3.0)
111
+ robotex (>= 1.0.0)
112
+ angular-rails-templates (1.1.0)
113
+ railties (>= 4.2, < 7)
114
+ sprockets (>= 3.0, < 5)
115
+ tilt
116
+ ansi (1.5.0)
117
+ apipie-dsl (2.3.0)
118
+ apipie-params (0.0.5)
119
+ apipie-rails (0.5.18)
120
+ rails (>= 4.1)
121
+ as_deprecation_tracker (1.5.0)
122
+ activesupport (>= 4.2)
123
+ railties (>= 4.2)
124
+ ast (2.4.1)
125
+ audited (4.9.0)
126
+ activerecord (>= 4.2, < 6.1)
127
+ autoprefixer-rails (10.1.0.0)
128
+ execjs
129
+ awesome_print (1.8.0)
130
+ bcrypt (3.1.16)
131
+ benchmark-ips (2.8.4)
132
+ binding_of_caller (0.8.0)
133
+ debug_inspector (>= 0.0.1)
134
+ bootsnap (1.5.1)
135
+ msgpack (~> 1.0)
136
+ bootstrap-sass (3.4.1)
137
+ autoprefixer-rails (>= 5.2.1)
138
+ sassc (>= 2.0.0)
139
+ builder (3.2.4)
140
+ bullet (6.1.2)
141
+ activesupport (>= 3.0.0)
142
+ uniform_notifier (~> 1.11)
143
+ byebug (11.1.3)
144
+ capybara (3.32.0)
145
+ addressable
146
+ mini_mime (>= 0.1.3)
147
+ nokogiri (~> 1.8)
148
+ rack (>= 1.6.0)
149
+ rack-test (>= 0.6.3)
150
+ regexp_parser (~> 1.5)
151
+ xpath (~> 3.2)
152
+ childprocess (3.0.0)
153
+ ci_reporter (2.0.0)
154
+ builder (>= 2.1.2)
155
+ ci_reporter_minitest (1.0.0)
156
+ ci_reporter (~> 2.0)
157
+ minitest (~> 5.0)
158
+ cliver (0.3.2)
159
+ coderay (1.1.3)
160
+ coffee-rails (5.0.0)
161
+ coffee-script (>= 2.2.0)
162
+ railties (>= 5.2.0)
163
+ coffee-script (2.4.1)
164
+ coffee-script-source
165
+ execjs
166
+ coffee-script-source (1.12.2)
167
+ concurrent-ruby (1.1.7)
168
+ concurrent-ruby-edge (0.6.0)
169
+ concurrent-ruby (~> 1.1.6)
170
+ connection_pool (2.2.3)
171
+ crack (0.4.5)
172
+ rexml
173
+ crass (1.0.6)
174
+ css_parser (1.7.1)
175
+ addressable
176
+ daemons (1.3.1)
177
+ database_cleaner (1.8.5)
178
+ deacon (1.0.0)
179
+ debug_inspector (1.0.0)
180
+ declarative (0.0.20)
181
+ declarative-option (0.1.0)
182
+ deep_cloneable (3.0.0)
183
+ activerecord (>= 3.1.0, < 7)
184
+ deface (1.5.3)
185
+ nokogiri (>= 1.6)
186
+ polyglot
187
+ rails (>= 4.1)
188
+ rainbow (>= 2.1.0)
189
+ docile (1.3.4)
190
+ domain_name (0.5.20190701)
191
+ unf (>= 0.0.5, < 1.0.0)
192
+ dynflow (1.4.7)
193
+ algebrick (~> 0.7.0)
194
+ apipie-params
195
+ concurrent-ruby (~> 1.1.3)
196
+ concurrent-ruby-edge (~> 0.6.0)
197
+ multi_json
198
+ sequel (>= 4.0.0)
199
+ erubi (1.10.0)
200
+ excon (0.78.1)
201
+ execjs (2.7.0)
202
+ facter (4.0.47)
203
+ hocon (~> 1.3)
204
+ thor (>= 1.0.1, < 2.0)
205
+ factory_bot (5.2.0)
206
+ activesupport (>= 4.2.0)
207
+ factory_bot_rails (5.2.0)
208
+ factory_bot (~> 5.2.0)
209
+ railties (>= 4.2.0)
210
+ faraday (0.17.3)
211
+ multipart-post (>= 1.2, < 3)
212
+ fast_gettext (1.8.0)
213
+ ffi (1.14.2)
214
+ fog-aws (3.7.0)
215
+ fog-core (~> 2.1)
216
+ fog-json (~> 1.1)
217
+ fog-xml (~> 0.1)
218
+ ipaddress (~> 0.8)
219
+ fog-core (2.1.0)
220
+ builder
221
+ excon (~> 0.58)
222
+ formatador (~> 0.2)
223
+ mime-types
224
+ fog-google (1.8.2)
225
+ fog-core (<= 2.1.0)
226
+ fog-json (~> 1.2)
227
+ fog-xml (~> 0.1.0)
228
+ google-api-client (~> 0.23.0)
229
+ fog-json (1.2.0)
230
+ fog-core
231
+ multi_json (~> 1.10)
232
+ fog-libvirt (0.7.0)
233
+ fog-core (>= 1.27.4)
234
+ fog-json
235
+ fog-xml (~> 0.1.1)
236
+ json
237
+ ruby-libvirt (>= 0.7.0)
238
+ fog-openstack (1.0.11)
239
+ fog-core (~> 2.1)
240
+ fog-json (>= 1.0)
241
+ ipaddress (>= 0.8)
242
+ fog-ovirt (1.2.5)
243
+ fog-core
244
+ fog-json
245
+ fog-xml
246
+ ovirt-engine-sdk (>= 4.1.3)
247
+ rbovirt (~> 0.1.5)
248
+ fog-vsphere (3.5.0)
249
+ fog-core
250
+ rbvmomi (>= 1.9, < 3)
251
+ fog-xml (0.1.3)
252
+ fog-core
253
+ nokogiri (>= 1.5.11, < 2.0.0)
254
+ font-awesome-sass (4.6.2)
255
+ sass (>= 3.2)
256
+ foreman (0.87.2)
257
+ foreman-tasks (2.0.2)
258
+ dynflow (>= 1.2.3)
259
+ foreman-tasks-core
260
+ get_process_mem
261
+ parse-cron (~> 0.1.4)
262
+ sinatra
263
+ foreman-tasks-core (0.3.4)
264
+ dynflow (>= 1.2.0)
265
+ formatador (0.2.5)
266
+ friendly_id (5.3.0)
267
+ activerecord (>= 4.0.0)
268
+ fx (0.6.2)
269
+ activerecord (>= 4.0.0)
270
+ railties (>= 4.0.0)
271
+ get_process_mem (0.2.7)
272
+ ffi (~> 1.0)
273
+ gettext (3.3.6)
274
+ locale (>= 2.0.5)
275
+ text (>= 1.3.0)
276
+ gettext_i18n_rails (1.8.1)
277
+ fast_gettext (>= 0.9.0)
278
+ gettext_i18n_rails_js (1.3.0)
279
+ gettext (>= 3.0.2)
280
+ gettext_i18n_rails (>= 0.7.1)
281
+ po_to_json (>= 1.0.0)
282
+ rails (>= 3.2.0)
283
+ gitlab-sidekiq-fetcher (0.6.1)
284
+ sidekiq (>= 5, < 6.1)
285
+ globalid (0.4.2)
286
+ activesupport (>= 4.2.0)
287
+ google-api-client (0.23.9)
288
+ addressable (~> 2.5, >= 2.5.1)
289
+ googleauth (>= 0.5, < 0.7.0)
290
+ httpclient (>= 2.8.1, < 3.0)
291
+ mime-types (~> 3.0)
292
+ representable (~> 3.0)
293
+ retriable (>= 2.0, < 4.0)
294
+ signet (~> 0.9)
295
+ googleauth (0.6.7)
296
+ faraday (~> 0.12)
297
+ jwt (>= 1.4, < 3.0)
298
+ memoist (~> 0.16)
299
+ multi_json (~> 1.11)
300
+ os (>= 0.9, < 2.0)
301
+ signet (~> 0.7)
302
+ graphiql-rails (1.7.0)
303
+ railties
304
+ sprockets-rails
305
+ graphql (1.8.18)
306
+ graphql-batch (0.4.3)
307
+ graphql (>= 1.3, < 2)
308
+ promise.rb (~> 0.7.2)
309
+ hashdiff (1.0.1)
310
+ hocon (1.3.1)
311
+ http-accept (1.7.0)
312
+ http-cookie (1.0.3)
313
+ domain_name (~> 0.5)
314
+ httpclient (2.8.3)
315
+ i18n (1.8.5)
316
+ concurrent-ruby (~> 1.0)
317
+ immigrant (0.3.6)
318
+ activerecord (>= 3.0)
319
+ ipaddress (0.8.3)
320
+ jaro_winkler (1.5.4)
321
+ journald-logger (3.0.1)
322
+ journald-native (~> 1.0)
323
+ journald-native (1.0.12)
324
+ jquery-ui-rails (6.0.1)
325
+ railties (>= 3.2.16)
326
+ json (2.5.1)
327
+ jwt (2.2.2)
328
+ launchy (2.5.0)
329
+ addressable (~> 2.7)
330
+ ldap_fluff (0.5.0)
331
+ activesupport
332
+ net-ldap (>= 0.11)
333
+ little-plugger (1.1.4)
334
+ locale (2.1.3)
335
+ logging (2.3.0)
336
+ little-plugger (~> 1.1)
337
+ multi_json (~> 1.14)
338
+ logging-journald (2.1.0)
339
+ journald-logger (~> 3.0)
340
+ logging
341
+ loofah (2.8.0)
342
+ crass (~> 1.0.2)
343
+ nokogiri (>= 1.5.9)
344
+ mail (2.7.1)
345
+ mini_mime (>= 0.1.1)
346
+ marcel (0.3.3)
347
+ mimemagic (~> 0.3.2)
348
+ maruku (0.7.3)
349
+ memoist (0.16.2)
350
+ method_source (1.0.0)
351
+ mime-types (3.3.1)
352
+ mime-types-data (~> 3.2015)
353
+ mime-types-data (3.2020.1104)
354
+ mimemagic (0.3.10)
355
+ nokogiri (~> 1)
356
+ rake
357
+ mini_mime (1.0.2)
358
+ mini_portile2 (2.4.0)
359
+ minitest (5.10.3)
360
+ minitest-reporters (1.4.2)
361
+ ansi
362
+ builder
363
+ minitest (>= 5.0)
364
+ ruby-progressbar
365
+ minitest-retry (0.2.1)
366
+ minitest (>= 5.0)
367
+ minitest-spec-rails (6.0.3)
368
+ minitest (>= 5.0)
369
+ railties (>= 4.1)
370
+ minitest-tags (0.0.5)
371
+ mocha (1.12.0)
372
+ msgpack (1.3.3)
373
+ multi_json (1.15.0)
374
+ multipart-post (2.1.1)
375
+ mustermann (1.1.1)
376
+ ruby2_keywords (~> 0.0.1)
377
+ net-ldap (0.17.0)
378
+ net-ping (2.0.8)
379
+ net-scp (3.0.0)
380
+ net-ssh (>= 2.6.5, < 7.0.0)
381
+ net-ssh (4.2.0)
382
+ netrc (0.11.0)
383
+ nio4r (2.5.4)
384
+ nokogiri (1.10.10)
385
+ mini_portile2 (~> 2.4.0)
386
+ oauth (0.5.4)
387
+ optimist (3.0.1)
388
+ os (1.1.1)
389
+ ovirt-engine-sdk (4.4.0)
390
+ json (>= 1, < 3)
391
+ paint (2.2.1)
392
+ parallel (1.20.1)
393
+ parallel_tests (3.4.0)
394
+ parallel
395
+ parse-cron (0.1.4)
396
+ parser (3.0.0.0)
397
+ ast (~> 2.4.1)
398
+ patternfly-sass (3.59.5)
399
+ bootstrap-sass (~> 3.4.0)
400
+ font-awesome-sass (~> 4.6.2)
401
+ sassc (> 2.0.1, < 3.0)
402
+ pg (1.2.3)
403
+ po_to_json (1.0.1)
404
+ json (>= 1.6.0)
405
+ poltergeist (1.18.1)
406
+ capybara (>= 2.1, < 4)
407
+ cliver (~> 0.3.1)
408
+ websocket-driver (>= 0.2.0)
409
+ polyglot (0.3.5)
410
+ prometheus-client (1.0.0)
411
+ promise.rb (0.7.4)
412
+ pry (0.13.1)
413
+ coderay (~> 1.1)
414
+ method_source (~> 1.0)
415
+ pry-byebug (3.9.0)
416
+ byebug (~> 11.0)
417
+ pry (~> 0.13.0)
418
+ pry-doc (1.1.0)
419
+ pry (~> 0.11)
420
+ yard (~> 0.9.11)
421
+ pry-rails (0.3.9)
422
+ pry (>= 0.10.4)
423
+ pry-remote (0.1.8)
424
+ pry (~> 0.9)
425
+ slop (~> 3.0)
426
+ pry-stack_explorer (0.4.12)
427
+ binding_of_caller (~> 0.7)
428
+ pry (~> 0.13)
429
+ public_suffix (4.0.6)
430
+ pulp_2to3_migration_client (0.2.1)
431
+ faraday (>= 0.14.0)
432
+ json (~> 2.1, >= 2.1.0)
433
+ pulp_ansible_client (0.2.0b15.dev01594337576)
434
+ faraday (>= 0.14.0)
435
+ json (~> 2.1, >= 2.1.0)
436
+ pulp_certguard_client (1.1.0)
437
+ faraday (>= 0.14.0)
438
+ json (~> 2.1, >= 2.1.0)
439
+ pulp_container_client (1.4.2)
440
+ faraday (>= 0.14.0)
441
+ json (~> 2.1, >= 2.1.0)
442
+ pulp_file_client (1.0.1)
443
+ faraday (>= 0.14.0)
444
+ json (~> 2.1, >= 2.1.0)
445
+ pulp_rpm_client (3.5.1)
446
+ faraday (>= 0.14.0)
447
+ json (~> 2.1, >= 2.1.0)
448
+ pulpcore_client (3.4.1)
449
+ faraday (>= 0.14.0)
450
+ json (~> 2.1, >= 2.1.0)
451
+ puma (4.3.7)
452
+ nio4r (~> 2.0)
453
+ rabl (0.14.3)
454
+ activesupport (>= 2.3.14)
455
+ rack (2.2.3)
456
+ rack-cors (1.0.6)
457
+ rack (>= 1.6.0)
458
+ rack-jsonp (1.3.1)
459
+ rack
460
+ rack-openid (1.4.2)
461
+ rack (>= 1.1.0)
462
+ ruby-openid (>= 2.1.8)
463
+ rack-protection (2.1.0)
464
+ rack
465
+ rack-test (1.1.0)
466
+ rack (>= 1.0, < 3)
467
+ rails (6.0.3.4)
468
+ actioncable (= 6.0.3.4)
469
+ actionmailbox (= 6.0.3.4)
470
+ actionmailer (= 6.0.3.4)
471
+ actionpack (= 6.0.3.4)
472
+ actiontext (= 6.0.3.4)
473
+ actionview (= 6.0.3.4)
474
+ activejob (= 6.0.3.4)
475
+ activemodel (= 6.0.3.4)
476
+ activerecord (= 6.0.3.4)
477
+ activestorage (= 6.0.3.4)
478
+ activesupport (= 6.0.3.4)
479
+ bundler (>= 1.3.0)
480
+ railties (= 6.0.3.4)
481
+ sprockets-rails (>= 2.0.0)
482
+ rails-controller-testing (1.0.5)
483
+ actionpack (>= 5.0.1.rc1)
484
+ actionview (>= 5.0.1.rc1)
485
+ activesupport (>= 5.0.1.rc1)
486
+ rails-dom-testing (2.0.3)
487
+ activesupport (>= 4.2.0)
488
+ nokogiri (>= 1.6)
489
+ rails-html-sanitizer (1.3.0)
490
+ loofah (~> 2.3)
491
+ rails-i18n (6.0.0)
492
+ i18n (>= 0.7, < 2)
493
+ railties (>= 6.0.0, < 7)
494
+ railties (6.0.3.4)
495
+ actionpack (= 6.0.3.4)
496
+ activesupport (= 6.0.3.4)
497
+ method_source
498
+ rake (>= 0.8.7)
499
+ thor (>= 0.20.3, < 2.0)
500
+ rainbow (3.0.0)
501
+ rake (13.0.3)
502
+ rb-fsevent (0.10.4)
503
+ rb-inotify (0.10.1)
504
+ ffi (~> 1.0)
505
+ rbovirt (0.1.7)
506
+ nokogiri
507
+ rest-client (> 1.7.0)
508
+ rbvmomi (2.4.1)
509
+ builder (~> 3.0)
510
+ json (>= 1.8)
511
+ nokogiri (~> 1.5)
512
+ optimist (~> 3.0)
513
+ rdoc (6.3.0)
514
+ record_tag_helper (1.0.1)
515
+ actionview (>= 5)
516
+ redhat_access (2.2.18)
517
+ angular-rails-templates (>= 0.0.4)
518
+ foreman-tasks
519
+ katello
520
+ redhat_access_lib (>= 1.1.5)
521
+ redhat_access_lib (1.1.5)
522
+ rest-client (>= 1.6.3)
523
+ redis (4.1.4)
524
+ regexp_parser (1.8.2)
525
+ representable (3.0.4)
526
+ declarative (< 0.1.0)
527
+ declarative-option (< 0.2.0)
528
+ uber (< 0.2.0)
529
+ responders (3.0.1)
530
+ actionpack (>= 5.0)
531
+ railties (>= 5.0)
532
+ rest-client (2.1.0)
533
+ http-accept (>= 1.7.0, < 2.0)
534
+ http-cookie (>= 1.0.2, < 2.0)
535
+ mime-types (>= 1.16, < 4.0)
536
+ netrc (~> 0.8)
537
+ retriable (3.1.2)
538
+ rexml (3.2.4)
539
+ rfauxfactory (0.1.5)
540
+ roadie (4.0.0)
541
+ css_parser (~> 1.4)
542
+ nokogiri (~> 1.8)
543
+ roadie-rails (2.2.0)
544
+ railties (>= 5.1, < 6.2)
545
+ roadie (>= 3.1, < 5.0)
546
+ robotex (1.0.0)
547
+ robottelo_reporter (0.1.1)
548
+ builder (>= 2.1.2)
549
+ rubocop (0.80.1)
550
+ jaro_winkler (~> 1.5.1)
551
+ parallel (~> 1.10)
552
+ parser (>= 2.7.0.1)
553
+ rainbow (>= 2.2.2, < 4.0)
554
+ rexml
555
+ ruby-progressbar (~> 1.7)
556
+ unicode-display_width (>= 1.4.0, < 1.7)
557
+ rubocop-checkstyle_formatter (0.4.0)
558
+ rubocop (>= 0.35.1)
559
+ rubocop-minitest (0.7.0)
560
+ rubocop (>= 0.74)
561
+ rubocop-performance (1.5.2)
562
+ rubocop (>= 0.71.0)
563
+ rubocop-rails (2.4.2)
564
+ rack (>= 1.1)
565
+ rubocop (>= 0.72.0)
566
+ ruby-libvirt (0.7.1)
567
+ ruby-openid (2.9.2)
568
+ ruby-progressbar (1.11.0)
569
+ ruby2_keywords (0.0.2)
570
+ ruby2ruby (2.4.4)
571
+ ruby_parser (~> 3.1)
572
+ sexp_processor (~> 4.6)
573
+ ruby_parser (3.15.0)
574
+ sexp_processor (~> 4.9)
575
+ rubyzip (2.3.0)
576
+ runcible (2.13.1)
577
+ activesupport (>= 3.0.10)
578
+ i18n (>= 0.5.0)
579
+ json
580
+ oauth
581
+ rest-client (>= 1.6.1, < 3.0.0)
582
+ safemode (1.3.6)
583
+ ruby2ruby (>= 2.4.0)
584
+ ruby_parser (>= 3.10.1)
585
+ sexp_processor (>= 4.10.0)
586
+ sass (3.7.4)
587
+ sass-listen (~> 4.0.0)
588
+ sass-listen (4.0.0)
589
+ rb-fsevent (~> 0.9, >= 0.9.4)
590
+ rb-inotify (~> 0.9, >= 0.9.7)
591
+ sass-rails (6.0.0)
592
+ sassc-rails (~> 2.1, >= 2.1.1)
593
+ sassc (2.4.0)
594
+ ffi (~> 1.9)
595
+ sassc-rails (2.1.2)
596
+ railties (>= 4.0.0)
597
+ sassc (>= 2.0)
598
+ sprockets (> 3.0)
599
+ sprockets-rails
600
+ tilt
601
+ scoped_search (4.1.9)
602
+ activerecord (>= 4.2.0)
603
+ secure_headers (6.3.1)
604
+ selenium-webdriver (3.142.7)
605
+ childprocess (>= 0.5, < 4.0)
606
+ rubyzip (>= 1.2.2)
607
+ sequel (5.39.0)
608
+ sexp_processor (4.15.1)
609
+ shoulda-context (1.2.2)
610
+ shoulda-matchers (4.3.0)
611
+ activesupport (>= 4.2.0)
612
+ show_me_the_cookies (5.0.1)
613
+ capybara (>= 2, < 4)
614
+ sidekiq (5.2.9)
615
+ connection_pool (~> 2.2, >= 2.2.2)
616
+ rack (~> 2.0)
617
+ rack-protection (>= 1.5.0)
618
+ redis (>= 3.3.5, < 4.2)
619
+ signet (0.14.0)
620
+ addressable (~> 2.3)
621
+ faraday (>= 0.17.3, < 2.0)
622
+ jwt (>= 1.5, < 3.0)
623
+ multi_json (~> 1.10)
624
+ simplecov (0.20.0)
625
+ docile (~> 1.1)
626
+ simplecov-html (~> 0.11)
627
+ simplecov_json_formatter (~> 0.1)
628
+ simplecov-html (0.12.3)
629
+ simplecov-rcov (0.2.3)
630
+ simplecov (>= 0.4.1)
631
+ simplecov_json_formatter (0.1.2)
632
+ sinatra (2.1.0)
633
+ mustermann (~> 1.0)
634
+ rack (~> 2.2)
635
+ rack-protection (= 2.1.0)
636
+ tilt (~> 2.0)
637
+ single_test (0.6.0)
638
+ rake
639
+ slop (3.6.0)
640
+ spring (2.1.1)
641
+ sprockets (3.7.2)
642
+ concurrent-ruby (~> 1.0)
643
+ rack (> 1, < 3)
644
+ sprockets-rails (3.2.2)
645
+ actionpack (>= 4.0)
646
+ activesupport (>= 4.0)
647
+ sprockets (>= 3.0.0)
648
+ sshkey (1.9.0)
649
+ statsd-instrument (2.9.2)
650
+ stomp (1.4.10)
651
+ text (1.3.1)
652
+ thor (1.0.1)
653
+ thread_safe (0.3.6)
654
+ tilt (2.0.10)
655
+ tzinfo (1.2.9)
656
+ thread_safe (~> 0.1)
657
+ uber (0.1.0)
658
+ uglifier (4.2.0)
659
+ execjs (>= 0.3.0, < 3)
660
+ unf (0.1.4)
661
+ unf_ext
662
+ unf_ext (0.0.7.7)
663
+ unicode-display_width (1.6.1)
664
+ uniform_notifier (1.13.0)
665
+ validates_lengths_from_database (0.8.0)
666
+ activerecord (>= 4)
667
+ vcr (3.0.3)
668
+ webmock (3.11.0)
669
+ addressable (>= 2.3.6)
670
+ crack (>= 0.3.2)
671
+ hashdiff (>= 0.4.0, < 2.0.0)
672
+ webpack-rails (0.9.11)
673
+ railties (>= 3.2.0)
674
+ websocket-driver (0.7.3)
675
+ websocket-extensions (>= 0.1.0)
676
+ websocket-extensions (0.1.5)
677
+ will_paginate (3.3.0)
678
+ wirb (2.2.2)
679
+ paint (>= 0.9, < 3.0)
680
+ x-editable-rails (1.5.5.1)
681
+ railties
682
+ xpath (3.2.0)
683
+ nokogiri (~> 1.8)
684
+ yard (0.9.26)
685
+ zeitwerk (2.4.2)
686
+
687
+ PLATFORMS
688
+ x86_64-linux
689
+
690
+ DEPENDENCIES
691
+ activerecord-nulldb-adapter
692
+ activerecord-session_store (>= 1.1.0, < 2)
693
+ ancestry (>= 3.0.7, < 4)
694
+ apipie-dsl (>= 2.2.2)
695
+ apipie-rails (>= 0.5.17, < 0.6.0)
696
+ as_deprecation_tracker (~> 1.4)
697
+ audited (>= 4.9.0, < 5)
698
+ awesome_print (~> 1.0)
699
+ bcrypt (~> 3.1)
700
+ benchmark-ips (>= 2.8.2)
701
+ bootsnap
702
+ bullet (>= 6.1.0)
703
+ capybara (~> 3.0, < 3.32.1)
704
+ ci_reporter_minitest
705
+ coffee-rails (~> 5.0.0)
706
+ daemons
707
+ database_cleaner (~> 1.3)
708
+ deacon (~> 1.0)
709
+ deep_cloneable (>= 3, < 4)
710
+ dynflow (>= 1.4.4, < 2.0.0)
711
+ execjs (>= 1.4.0, < 3.0)
712
+ facter
713
+ factory_bot_rails (~> 5.0)
714
+ fast_gettext (~> 1.4)
715
+ fog-aws (>= 3.6.2, < 4)
716
+ fog-core (= 2.1.0)
717
+ fog-google (~> 1.8.2)
718
+ fog-libvirt (>= 0.7.0)
719
+ fog-openstack (>= 1.0.8, < 2.0.0)
720
+ fog-ovirt (~> 1.2.4)
721
+ fog-vsphere (>= 3.3.1, < 4.0)
722
+ foreman
723
+ foreman_rh_cloud!
724
+ friendly_id (>= 5.3.0, < 5.4)
725
+ get_process_mem
726
+ gettext (>= 3.2.1, < 4.0.0)
727
+ gettext_i18n_rails (~> 1.8)
728
+ gettext_i18n_rails_js (~> 1.0)
729
+ gitlab-sidekiq-fetcher
730
+ graphiql-rails (~> 1.7)
731
+ graphql (~> 1.8.0)
732
+ graphql-batch
733
+ i18n (~> 1.1)
734
+ immigrant (~> 0.1)
735
+ jquery-ui-rails (~> 6.0)
736
+ jwt (~> 2.2.1)
737
+ katello!
738
+ launchy (~> 2.4)
739
+ ldap_fluff (>= 0.4.7, < 1.0)
740
+ logging (>= 1.8.0, < 3.0.0)
741
+ logging-journald (~> 2.0)
742
+ mail (~> 2.7)
743
+ maruku (~> 0.7)
744
+ minitest (~> 5.1, < 5.11)
745
+ minitest-reporters
746
+ minitest-retry (~> 0.0)
747
+ minitest-spec-rails (~> 6.0)
748
+ minitest-tags
749
+ mocha (~> 1.11)
750
+ net-ldap (>= 0.16.0)
751
+ net-ping
752
+ net-scp
753
+ net-ssh (= 4.2.0)
754
+ oauth (>= 0.5.4, < 1)
755
+ parallel_tests
756
+ patternfly-sass (~> 3.59.4)
757
+ pg (>= 0.18, < 2.0)
758
+ poltergeist (>= 1.18.0)
759
+ prometheus-client (~> 1.0)
760
+ pry
761
+ pry-byebug
762
+ pry-doc
763
+ pry-rails
764
+ pry-remote
765
+ pry-stack_explorer
766
+ puma (< 5.0)
767
+ rabl (~> 0.14.2)
768
+ rack-cors (~> 1.0.2)
769
+ rack-jsonp
770
+ rack-openid (~> 1.3)
771
+ rails (~> 6.0.3.1)
772
+ rails-controller-testing (~> 1.0)
773
+ rails-i18n (~> 6.0)
774
+ rainbow (>= 2.2.1)
775
+ rbvmomi (~> 2.0)
776
+ rdoc
777
+ record_tag_helper (~> 1.0)
778
+ redis (~> 4.0)
779
+ responders (~> 3.0)
780
+ rest-client (>= 2.0.0, < 3)
781
+ rfauxfactory (~> 0.1, >= 0.1.5)
782
+ roadie-rails (~> 2.0)
783
+ robottelo_reporter (~> 0.1)
784
+ rubocop (~> 0.80.0)
785
+ rubocop-checkstyle_formatter (~> 0.2)
786
+ rubocop-minitest (~> 0.7.0)
787
+ rubocop-performance (~> 1.5.2)
788
+ rubocop-rails (~> 2.4.2)
789
+ ruby-libvirt (~> 0.5)
790
+ safemode (>= 1.3.5, < 2)
791
+ sass-rails (>= 5.0, < 7.0)
792
+ scoped_search (>= 4.1.8, < 5)
793
+ secure_headers (~> 6.3)
794
+ selenium-webdriver
795
+ shoulda-context (~> 1.2)
796
+ shoulda-matchers (>= 4.0, < 4.4)
797
+ show_me_the_cookies (~> 5.0)
798
+ sidekiq (~> 5.0)
799
+ simplecov
800
+ simplecov-rcov
801
+ single_test (~> 0.6)
802
+ spring (>= 1.0, < 3)
803
+ sprockets (~> 3)
804
+ sprockets-rails (~> 3.0)
805
+ sshkey (~> 1.9)
806
+ statsd-instrument (< 3)
807
+ uglifier (>= 1.0.3)
808
+ validates_lengths_from_database (~> 0.5)
809
+ vcr (< 4.0.0)
810
+ webmock
811
+ webpack-rails (~> 0.9.8)
812
+ will_paginate (>= 3.1.7, < 4)
813
+ wirb (>= 1.0, < 3.0)
814
+ x-editable-rails (~> 1.5.5)
815
+
816
+ BUNDLED WITH
817
+ 2.2.3