foreman_rh_cloud 4.0.25 → 4.0.29

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/rh_cloud/inventory_controller.rb +4 -1
  3. data/app/controllers/foreman_inventory_upload/cloud_status_controller.rb +26 -0
  4. data/app/controllers/insights_cloud/api/machine_telemetries_controller.rb +18 -4
  5. data/app/controllers/insights_cloud/hits_controller.rb +0 -1
  6. data/app/services/foreman_rh_cloud/cloud_ping_service.rb +83 -0
  7. data/app/services/foreman_rh_cloud/cloud_request_forwarder.rb +15 -3
  8. data/config/Gemfile.lock.gh_test +169 -160
  9. data/config/database.yml.example +2 -2
  10. data/config/rh_cert-api_chain.pem +74 -0
  11. data/config/routes.rb +3 -1
  12. data/lib/foreman_inventory_upload/generators/queries.rb +1 -16
  13. data/lib/foreman_inventory_upload/generators/tags.rb +1 -2
  14. data/lib/foreman_rh_cloud/engine.rb +2 -1
  15. data/lib/foreman_rh_cloud/version.rb +1 -1
  16. data/lib/foreman_rh_cloud.rb +16 -1
  17. data/lib/insights_cloud/async/insights_client_status_aging.rb +4 -0
  18. data/lib/insights_cloud/async/insights_full_sync.rb +4 -0
  19. data/lib/insights_cloud/async/insights_generate_notifications.rb +4 -0
  20. data/lib/insights_cloud/async/insights_resolutions_sync.rb +7 -2
  21. data/lib/insights_cloud/async/insights_rules_sync.rb +10 -2
  22. data/lib/insights_cloud.rb +4 -0
  23. data/lib/inventory_sync/async/host_result.rb +0 -5
  24. data/lib/inventory_sync/async/inventory_full_sync.rb +18 -9
  25. data/lib/inventory_sync/async/inventory_hosts_sync.rb +6 -6
  26. data/lib/inventory_sync/async/inventory_scheduled_sync.rb +4 -0
  27. data/lib/inventory_sync/async/inventory_self_host_sync.rb +4 -0
  28. data/lib/inventory_sync/async/query_inventory_job.rb +4 -0
  29. data/lib/tasks/rh_cloud_inventory.rake +2 -9
  30. data/package.json +1 -1
  31. data/test/controllers/insights_cloud/api/machine_telemetries_controller_test.rb +20 -39
  32. data/test/controllers/inventory_upload/cloud_status_controller_test.rb +44 -0
  33. data/test/factories/inventory_upload_factories.rb +14 -0
  34. data/test/jobs/insights_resolutions_sync_test.rb +10 -1
  35. data/test/jobs/inventory_full_sync_test.rb +28 -2
  36. data/test/jobs/inventory_hosts_sync_test.rb +15 -0
  37. data/test/test_plugin_helper.rb +53 -0
  38. data/test/unit/foreman_rh_cloud_self_host_test.rb +28 -0
  39. data/test/unit/services/foreman_rh_cloud/cloud_request_forwarder_test.rb +29 -34
  40. data/test/unit/services/foreman_rh_cloud/cloud_status_service_test.rb +66 -0
  41. data/test/unit/slice_generator_test.rb +36 -4
  42. data/test/unit/tags_generator_test.rb +16 -16
  43. data/webpack/ForemanInventoryUpload/Components/InventorySettings/InventorySettings.scss +0 -4
  44. data/webpack/ForemanInventoryUpload/Components/PageHeader/PageTitle.js +12 -0
  45. data/webpack/ForemanInventoryUpload/Components/PageHeader/__tests__/__snapshots__/PageTitle.test.js.snap +10 -0
  46. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/CloudPingModal/index.js +144 -0
  47. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/CloudPingModal/index.scss +5 -0
  48. data/webpack/ForemanInventoryUpload/ForemanInventoryConstants.js +2 -0
  49. data/webpack/InsightsCloudSync/Components/InsightsHeader/InsightsHeader.scss +5 -1
  50. data/webpack/InsightsCloudSync/Components/InsightsHeader/index.js +6 -6
  51. data/webpack/InsightsCloudSync/Components/InsightsSettings/InsightsSettings.js +9 -5
  52. data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/__snapshots__/InsightsSettings.test.js.snap +6 -6
  53. data/webpack/InsightsCloudSync/Components/InsightsSettings/insightsSettings.scss +1 -14
  54. data/webpack/InsightsCloudSync/Components/InsightsTable/InsightsTable.js +5 -24
  55. data/webpack/InsightsCloudSync/Components/InsightsTable/InsightsTableConstants.js +11 -4
  56. data/webpack/InsightsCloudSync/Components/InsightsTable/InsightsTableSelectors.js +0 -3
  57. data/webpack/InsightsCloudSync/Components/InsightsTable/Pagination.js +51 -0
  58. data/webpack/InsightsCloudSync/Components/InsightsTable/__tests__/__snapshots__/InsightsTable.test.js.snap +3 -68
  59. data/webpack/InsightsCloudSync/Components/InsightsTable/table.scss +10 -0
  60. data/webpack/InsightsCloudSync/Components/RemediationModal/RemediationModal.js +11 -10
  61. data/webpack/InsightsCloudSync/Components/RemediationModal/index.js +0 -2
  62. data/webpack/InsightsCloudSync/Components/ToolbarDropdown.js +32 -0
  63. data/webpack/InsightsCloudSync/Components/__tests__/__snapshots__/InsightsHeader.test.js.snap +5 -5
  64. data/webpack/InsightsCloudSync/InsightsCloudSync.js +19 -13
  65. data/webpack/InsightsCloudSync/InsightsCloudSync.scss +82 -2
  66. data/webpack/InsightsCloudSync/__snapshots__/InsightsCloudSync.test.js.snap +16 -6
  67. data/webpack/common/Switcher/HelpLabel.js +1 -1
  68. data/webpack/common/Switcher/SwitcherPF4.js +1 -1
  69. data/webpack/common/Switcher/SwitcherPF4.scss +6 -7
  70. data/webpack/common/Switcher/__tests__/__snapshots__/HelpLabel.test.js.snap +1 -1
  71. data/webpack/common/Switcher/__tests__/__snapshots__/SwitcherPF4.test.js.snap +1 -1
  72. metadata +16 -24
  73. data/webpack/InsightsCloudSync/Components/InsightsSyncSwitcher/InsightsSyncSwitcher.fixtures.js +0 -1
  74. data/webpack/InsightsCloudSync/Components/InsightsSyncSwitcher/InsightsSyncSwitcher.js +0 -45
  75. data/webpack/InsightsCloudSync/Components/InsightsSyncSwitcher/__tests__/InsightsSyncSwitcher.test.js +0 -17
  76. data/webpack/InsightsCloudSync/Components/InsightsSyncSwitcher/__tests__/__snapshots__/InsightsSyncSwitcher.test.js.snap +0 -38
  77. data/webpack/InsightsCloudSync/Components/InsightsSyncSwitcher/index.js +0 -1
  78. data/webpack/InsightsCloudSync/Components/InsightsSyncSwitcher/insightsSyncSwitcher.scss +0 -3
  79. data/webpack/InsightsCloudSync/Components/RemediationModal/RemediateButton.js +0 -59
@@ -1,36 +1,49 @@
1
+ PATH
2
+ remote: ../foreman-tasks
3
+ specs:
4
+ foreman-tasks (4.1.5)
5
+ dynflow (>= 1.2.3)
6
+ foreman-tasks-core
7
+ get_process_mem
8
+ parse-cron (~> 0.1.4)
9
+ sinatra
10
+ foreman-tasks-core (0.3.6)
11
+ dynflow (>= 1.2.0)
12
+
1
13
  PATH
2
14
  remote: ../foreman_rh_cloud
3
15
  specs:
4
- foreman_rh_cloud (3.0.15)
16
+ foreman_rh_cloud (4.0.27)
17
+ foreman-tasks
5
18
  foreman_ansible
6
19
  katello
7
- redhat_access
8
20
 
9
21
  PATH
10
22
  remote: ../katello
11
23
  specs:
12
- katello (3.18.0.rc1)
24
+ katello (4.1.4)
13
25
  activerecord-import
14
26
  anemone
15
27
  angular-rails-templates (~> 1.1.0)
16
28
  apipie-rails (>= 0.5.14)
17
29
  deface (>= 1.0.2, < 2.0.0)
18
- dynflow (>= 1.2.0)
19
- foreman-tasks (>= 0.14.1)
30
+ dynflow (< 1.6.0)
31
+ foreman-tasks (~> 4.0)
32
+ foreman-tasks-core (< 0.4)
20
33
  foreman_remote_execution (>= 3.0)
21
34
  fx (< 1.0)
22
35
  gettext_i18n_rails
23
36
  json
24
37
  oauth
25
38
  pg
26
- pulp_2to3_migration_client (>= 0.3.0, < 0.6.0, != 0.4.0)
27
- pulp_ansible_client (>= 0.2, < 0.5)
39
+ pulp_ansible_client (>= 0.8, < 0.9)
28
40
  pulp_certguard_client (< 2.0)
29
- pulp_container_client (>= 2.0.0, < 2.2.0)
30
- pulp_deb_client (>= 2.6.0, < 2.8.0)
31
- pulp_file_client (>= 1.2.0, < 1.4.0)
32
- pulp_rpm_client (>= 3.6.2, < 3.8.0)
33
- pulpcore_client (>= 3.6.0, < 3.8.0)
41
+ pulp_container_client (>= 2.7.0, < 2.8.0)
42
+ pulp_deb_client (>= 2.13.0, < 2.14.0)
43
+ pulp_file_client (>= 1.8.0, < 1.9.0)
44
+ pulp_rpm_client (>= 3.13.0, < 3.15.0)
45
+ pulpcore_client (>= 3.14.0, < 3.15.0)
46
+ qpid_proton
34
47
  rabl
35
48
  rails
36
49
  rest-client
@@ -41,75 +54,77 @@ PATH
41
54
  GEM
42
55
  remote: https://rubygems.org/
43
56
  specs:
44
- actioncable (6.0.3.4)
45
- actionpack (= 6.0.3.4)
57
+ actioncable (6.0.3.6)
58
+ actionpack (= 6.0.3.6)
46
59
  nio4r (~> 2.0)
47
60
  websocket-driver (>= 0.6.1)
48
- actionmailbox (6.0.3.4)
49
- actionpack (= 6.0.3.4)
50
- activejob (= 6.0.3.4)
51
- activerecord (= 6.0.3.4)
52
- activestorage (= 6.0.3.4)
53
- activesupport (= 6.0.3.4)
61
+ actionmailbox (6.0.3.6)
62
+ actionpack (= 6.0.3.6)
63
+ activejob (= 6.0.3.6)
64
+ activerecord (= 6.0.3.6)
65
+ activestorage (= 6.0.3.6)
66
+ activesupport (= 6.0.3.6)
54
67
  mail (>= 2.7.1)
55
- actionmailer (6.0.3.4)
56
- actionpack (= 6.0.3.4)
57
- actionview (= 6.0.3.4)
58
- activejob (= 6.0.3.4)
68
+ actionmailer (6.0.3.6)
69
+ actionpack (= 6.0.3.6)
70
+ actionview (= 6.0.3.6)
71
+ activejob (= 6.0.3.6)
59
72
  mail (~> 2.5, >= 2.5.4)
60
73
  rails-dom-testing (~> 2.0)
61
- actionpack (6.0.3.4)
62
- actionview (= 6.0.3.4)
63
- activesupport (= 6.0.3.4)
74
+ actionpack (6.0.3.6)
75
+ actionview (= 6.0.3.6)
76
+ activesupport (= 6.0.3.6)
64
77
  rack (~> 2.0, >= 2.0.8)
65
78
  rack-test (>= 0.6.3)
66
79
  rails-dom-testing (~> 2.0)
67
80
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
68
- actiontext (6.0.3.4)
69
- actionpack (= 6.0.3.4)
70
- activerecord (= 6.0.3.4)
71
- activestorage (= 6.0.3.4)
72
- activesupport (= 6.0.3.4)
81
+ actiontext (6.0.3.6)
82
+ actionpack (= 6.0.3.6)
83
+ activerecord (= 6.0.3.6)
84
+ activestorage (= 6.0.3.6)
85
+ activesupport (= 6.0.3.6)
73
86
  nokogiri (>= 1.8.5)
74
- actionview (6.0.3.4)
75
- activesupport (= 6.0.3.4)
87
+ actionview (6.0.3.6)
88
+ activesupport (= 6.0.3.6)
76
89
  builder (~> 3.1)
77
90
  erubi (~> 1.4)
78
91
  rails-dom-testing (~> 2.0)
79
92
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
80
- activejob (6.0.3.4)
81
- activesupport (= 6.0.3.4)
93
+ activejob (6.0.3.6)
94
+ activesupport (= 6.0.3.6)
82
95
  globalid (>= 0.3.6)
83
- activemodel (6.0.3.4)
84
- activesupport (= 6.0.3.4)
85
- activerecord (6.0.3.4)
86
- activemodel (= 6.0.3.4)
87
- activesupport (= 6.0.3.4)
88
- activerecord-import (1.0.7)
96
+ activemodel (6.0.3.6)
97
+ activesupport (= 6.0.3.6)
98
+ activerecord (6.0.3.6)
99
+ activemodel (= 6.0.3.6)
100
+ activesupport (= 6.0.3.6)
101
+ activerecord-import (1.2.0)
89
102
  activerecord (>= 3.2)
90
103
  activerecord-nulldb-adapter (0.7.0)
91
104
  activerecord (>= 5.2.0, < 6.3)
92
- activerecord-session_store (1.1.3)
93
- actionpack (>= 4.0)
94
- activerecord (>= 4.0)
105
+ activerecord-session_store (2.0.0)
106
+ actionpack (>= 5.2.4.1)
107
+ activerecord (>= 5.2.4.1)
95
108
  multi_json (~> 1.11, >= 1.11.2)
96
- rack (>= 1.5.2, < 3)
97
- railties (>= 4.0)
98
- activestorage (6.0.3.4)
99
- actionpack (= 6.0.3.4)
100
- activejob (= 6.0.3.4)
101
- activerecord (= 6.0.3.4)
102
- marcel (~> 0.3.1)
103
- activesupport (6.0.3.4)
109
+ rack (>= 2.0.8, < 3)
110
+ railties (>= 5.2.4.1)
111
+ activestorage (6.0.3.6)
112
+ actionpack (= 6.0.3.6)
113
+ activejob (= 6.0.3.6)
114
+ activerecord (= 6.0.3.6)
115
+ marcel (~> 1.0.0)
116
+ activesupport (6.0.3.6)
104
117
  concurrent-ruby (~> 1.0, >= 1.0.2)
105
118
  i18n (>= 0.7, < 2)
106
119
  minitest (~> 5.1)
107
120
  tzinfo (~> 1.1)
108
121
  zeitwerk (~> 2.2, >= 2.2.2)
122
+ acts_as_list (1.0.4)
123
+ activerecord (>= 4.2)
109
124
  addressable (2.7.0)
110
125
  public_suffix (>= 2.0.2, < 5.0)
111
126
  algebrick (0.7.5)
112
- amazing_print (1.2.2)
127
+ amazing_print (1.3.0)
113
128
  ancestry (3.2.1)
114
129
  activerecord (>= 4.2.0)
115
130
  anemone (0.7.2)
@@ -134,15 +149,15 @@ GEM
134
149
  execjs
135
150
  bcrypt (3.1.16)
136
151
  benchmark-ips (2.8.4)
137
- binding_of_caller (1.0.0)
152
+ binding_of_caller (0.8.0)
138
153
  debug_inspector (>= 0.0.1)
139
- bootsnap (1.7.1)
154
+ bootsnap (1.7.3)
140
155
  msgpack (~> 1.0)
141
156
  bootstrap-sass (3.4.1)
142
157
  autoprefixer-rails (>= 5.2.1)
143
158
  sassc (>= 2.0.0)
144
159
  builder (3.2.4)
145
- bullet (6.1.3)
160
+ bullet (6.1.4)
146
161
  activesupport (>= 3.0.0)
147
162
  uniform_notifier (~> 1.11)
148
163
  byebug (11.1.3)
@@ -168,7 +183,7 @@ GEM
168
183
  coffee-script-source
169
184
  execjs
170
185
  coffee-script-source (1.12.2)
171
- concurrent-ruby (1.1.8)
186
+ concurrent-ruby (1.1.9)
172
187
  concurrent-ruby-edge (0.6.0)
173
188
  concurrent-ruby (~> 1.1.6)
174
189
  connection_pool (2.2.3)
@@ -180,17 +195,17 @@ GEM
180
195
  daemons (1.3.1)
181
196
  database_cleaner (1.99.0)
182
197
  deacon (1.0.0)
183
- debug_inspector (1.0.0)
198
+ debug_inspector (1.1.0)
184
199
  declarative (0.0.20)
185
200
  declarative-option (0.1.0)
186
- deep_cloneable (3.0.0)
201
+ deep_cloneable (3.1.0)
187
202
  activerecord (>= 3.1.0, < 7)
188
- deface (1.6.1)
203
+ deface (1.8.1)
189
204
  nokogiri (>= 1.6)
190
205
  polyglot
191
206
  rails (>= 5.2)
192
207
  rainbow (>= 2.1.0)
193
- docile (1.3.5)
208
+ docile (1.4.0)
194
209
  domain_name (0.5.20190701)
195
210
  unf (>= 0.0.5, < 1.0.0)
196
211
  dynflow (1.4.7)
@@ -247,12 +262,12 @@ GEM
247
262
  fog-core (~> 2.1)
248
263
  fog-json (>= 1.0)
249
264
  ipaddress (>= 0.8)
250
- fog-ovirt (1.2.5)
265
+ fog-ovirt (2.0.1)
266
+ activesupport
251
267
  fog-core
252
268
  fog-json
253
269
  fog-xml
254
- ovirt-engine-sdk (>= 4.1.3)
255
- rbovirt (~> 0.1.5)
270
+ ovirt-engine-sdk (>= 4.3.1)
256
271
  fog-vsphere (3.5.0)
257
272
  fog-core
258
273
  rbvmomi (>= 1.9, < 3)
@@ -262,26 +277,19 @@ GEM
262
277
  font-awesome-sass (4.6.2)
263
278
  sass (>= 3.2)
264
279
  foreman (0.87.2)
265
- foreman-tasks (3.0.3)
266
- dynflow (>= 1.2.3)
267
- foreman-tasks-core
268
- get_process_mem
269
- parse-cron (~> 0.1.4)
270
- sinatra
271
- foreman-tasks-core (0.3.4)
272
- dynflow (>= 1.2.0)
273
- foreman_ansible (6.1.1)
280
+ foreman_ansible (6.4.1)
281
+ acts_as_list (~> 1.0.3)
274
282
  deface (< 2.0)
275
- foreman_remote_execution (>= 4.2.0)
283
+ foreman_remote_execution (>= 4.4.0)
276
284
  ipaddress (>= 0.8.0, < 1.0)
277
285
  foreman_ansible_core (4.0.0)
278
286
  foreman-tasks-core (~> 0.3.2)
279
287
  foreman_remote_execution_core (~> 1.1)
280
288
  net-ssh
281
- foreman_remote_execution (4.2.2)
289
+ foreman_remote_execution (4.5.6)
282
290
  deface
283
291
  dynflow (>= 1.0.2, < 2.0.0)
284
- foreman-tasks (>= 0.15.1)
292
+ foreman-tasks (>= 4.1.0)
285
293
  foreman_remote_execution_core
286
294
  foreman_remote_execution_core (1.4.0)
287
295
  foreman-tasks-core (>= 0.3.1)
@@ -338,12 +346,11 @@ GEM
338
346
  http-cookie (1.0.3)
339
347
  domain_name (~> 0.5)
340
348
  httpclient (2.8.3)
341
- i18n (1.8.8)
349
+ i18n (1.8.10)
342
350
  concurrent-ruby (~> 1.0)
343
351
  immigrant (0.3.6)
344
352
  activerecord (>= 3.0)
345
353
  ipaddress (0.8.3)
346
- jaro_winkler (1.5.4)
347
354
  journald-logger (3.0.1)
348
355
  journald-native (~> 1.0)
349
356
  journald-native (1.0.12)
@@ -369,16 +376,14 @@ GEM
369
376
  nokogiri (>= 1.5.9)
370
377
  mail (2.7.1)
371
378
  mini_mime (>= 0.1.1)
372
- marcel (0.3.3)
373
- mimemagic (~> 0.3.2)
379
+ marcel (1.0.0)
374
380
  maruku (0.7.3)
375
381
  memoist (0.16.2)
376
382
  method_source (1.0.0)
377
383
  mime-types (3.3.1)
378
384
  mime-types-data (~> 3.2015)
379
- mime-types-data (3.2020.1104)
380
- mimemagic (0.3.5)
381
- mini_mime (1.0.2)
385
+ mime-types-data (3.2021.0225)
386
+ mini_mime (1.0.3)
382
387
  mini_portile2 (2.5.0)
383
388
  minitest (5.10.3)
384
389
  minitest-reporters (1.4.3)
@@ -404,21 +409,21 @@ GEM
404
409
  net-ssh (>= 2.6.5, < 7.0.0)
405
410
  net-ssh (4.2.0)
406
411
  netrc (0.11.0)
407
- nio4r (2.5.5)
408
- nokogiri (1.11.1)
412
+ nio4r (2.5.7)
413
+ nokogiri (1.11.2)
409
414
  mini_portile2 (~> 2.5.0)
410
415
  racc (~> 1.4)
411
416
  oauth (0.5.5)
412
417
  optimist (3.0.1)
413
418
  os (1.1.1)
414
- ovirt-engine-sdk (4.4.0)
419
+ ovirt-engine-sdk (4.4.1)
415
420
  json (>= 1, < 3)
416
421
  paint (2.2.1)
417
- parallel (1.20.1)
418
- parallel_tests (3.4.0)
422
+ parallel (1.21.0)
423
+ parallel_tests (3.6.0)
419
424
  parallel
420
425
  parse-cron (0.1.4)
421
- parser (3.0.0.0)
426
+ parser (3.0.2.0)
422
427
  ast (~> 2.4.1)
423
428
  patternfly-sass (3.59.5)
424
429
  bootstrap-sass (~> 3.4.0)
@@ -444,39 +449,34 @@ GEM
444
449
  pry-remote (0.1.8)
445
450
  pry (~> 0.9)
446
451
  slop (~> 3.0)
447
- pry-stack_explorer (0.6.0)
448
- binding_of_caller (~> 1.0)
452
+ pry-stack_explorer (0.4.13)
453
+ binding_of_caller (~> 0.7)
449
454
  pry (~> 0.13)
450
455
  public_suffix (4.0.6)
451
- pulp_2to3_migration_client (0.5.1)
456
+ pulp_ansible_client (0.8.1)
452
457
  faraday (>= 0.14.0)
453
458
  json (~> 2.1, >= 2.1.0)
454
- pulp_ansible_client (0.4.3)
459
+ pulp_certguard_client (1.5.1)
455
460
  faraday (>= 0.14.0)
456
461
  json (~> 2.1, >= 2.1.0)
457
- pulp_certguard_client (1.1.0)
462
+ pulp_container_client (2.7.1)
458
463
  faraday (>= 0.14.0)
459
464
  json (~> 2.1, >= 2.1.0)
460
- pulp_container_client (2.1.0)
465
+ pulp_deb_client (2.13.1)
461
466
  faraday (>= 0.14.0)
462
467
  json (~> 2.1, >= 2.1.0)
463
- pulp_deb_client (2.7.0)
468
+ pulp_file_client (1.8.2)
464
469
  faraday (>= 0.14.0)
465
470
  json (~> 2.1, >= 2.1.0)
466
- pulp_file_client (1.3.0)
471
+ pulp_rpm_client (3.14.6)
467
472
  faraday (>= 0.14.0)
468
473
  json (~> 2.1, >= 2.1.0)
469
- pulp_rpm_client (3.7.0)
474
+ pulpcore_client (3.14.8)
470
475
  faraday (>= 0.14.0)
471
476
  json (~> 2.1, >= 2.1.0)
472
- pulpcore_client (3.7.3)
473
- faraday (>= 0.14.0)
474
- json (~> 2.1, >= 2.1.0)
475
- puma (4.3.7)
477
+ puma (5.5.2)
476
478
  nio4r (~> 2.0)
477
- puma-plugin-systemd (0.1.5)
478
- json
479
- puma (>= 3.6, < 5)
479
+ qpid_proton (0.33.0)
480
480
  rabl (0.14.3)
481
481
  activesupport (>= 2.3.14)
482
482
  racc (1.5.2)
@@ -492,20 +492,20 @@ GEM
492
492
  rack
493
493
  rack-test (1.1.0)
494
494
  rack (>= 1.0, < 3)
495
- rails (6.0.3.4)
496
- actioncable (= 6.0.3.4)
497
- actionmailbox (= 6.0.3.4)
498
- actionmailer (= 6.0.3.4)
499
- actionpack (= 6.0.3.4)
500
- actiontext (= 6.0.3.4)
501
- actionview (= 6.0.3.4)
502
- activejob (= 6.0.3.4)
503
- activemodel (= 6.0.3.4)
504
- activerecord (= 6.0.3.4)
505
- activestorage (= 6.0.3.4)
506
- activesupport (= 6.0.3.4)
495
+ rails (6.0.3.6)
496
+ actioncable (= 6.0.3.6)
497
+ actionmailbox (= 6.0.3.6)
498
+ actionmailer (= 6.0.3.6)
499
+ actionpack (= 6.0.3.6)
500
+ actiontext (= 6.0.3.6)
501
+ actionview (= 6.0.3.6)
502
+ activejob (= 6.0.3.6)
503
+ activemodel (= 6.0.3.6)
504
+ activerecord (= 6.0.3.6)
505
+ activestorage (= 6.0.3.6)
506
+ activesupport (= 6.0.3.6)
507
507
  bundler (>= 1.3.0)
508
- railties (= 6.0.3.4)
508
+ railties (= 6.0.3.6)
509
509
  sprockets-rails (>= 2.0.0)
510
510
  rails-controller-testing (1.0.5)
511
511
  actionpack (>= 5.0.1.rc1)
@@ -519,9 +519,9 @@ GEM
519
519
  rails-i18n (6.0.0)
520
520
  i18n (>= 0.7, < 2)
521
521
  railties (>= 6.0.0, < 7)
522
- railties (6.0.3.4)
523
- actionpack (= 6.0.3.4)
524
- activesupport (= 6.0.3.4)
522
+ railties (6.0.3.6)
523
+ actionpack (= 6.0.3.6)
524
+ activesupport (= 6.0.3.6)
525
525
  method_source
526
526
  rake (>= 0.8.7)
527
527
  thor (>= 0.20.3, < 2.0)
@@ -530,9 +530,6 @@ GEM
530
530
  rb-fsevent (0.10.4)
531
531
  rb-inotify (0.10.1)
532
532
  ffi (~> 1.0)
533
- rbovirt (0.1.7)
534
- nokogiri
535
- rest-client (> 1.7.0)
536
533
  rbvmomi (2.4.1)
537
534
  builder (~> 3.0)
538
535
  json (>= 1.8)
@@ -541,13 +538,6 @@ GEM
541
538
  rdoc (6.3.0)
542
539
  record_tag_helper (1.0.1)
543
540
  actionview (>= 5)
544
- redhat_access (2.2.18)
545
- angular-rails-templates (>= 0.0.4)
546
- foreman-tasks
547
- katello
548
- redhat_access_lib (>= 1.1.5)
549
- redhat_access_lib (1.1.5)
550
- rest-client (>= 1.6.3)
551
541
  redis (4.1.4)
552
542
  regexp_parser (1.8.2)
553
543
  representable (3.0.4)
@@ -563,7 +553,7 @@ GEM
563
553
  mime-types (>= 1.16, < 4.0)
564
554
  netrc (~> 0.8)
565
555
  retriable (3.1.2)
566
- rexml (3.2.4)
556
+ rexml (3.2.5)
567
557
  rfauxfactory (0.1.5)
568
558
  roadie (4.0.0)
569
559
  css_parser (~> 1.4)
@@ -574,23 +564,30 @@ GEM
574
564
  robotex (1.0.0)
575
565
  robottelo_reporter (0.1.1)
576
566
  builder (>= 2.1.2)
577
- rubocop (0.80.1)
578
- jaro_winkler (~> 1.5.1)
567
+ rubocop (0.89.1)
579
568
  parallel (~> 1.10)
580
- parser (>= 2.7.0.1)
569
+ parser (>= 2.7.1.1)
581
570
  rainbow (>= 2.2.2, < 4.0)
571
+ regexp_parser (>= 1.7)
582
572
  rexml
573
+ rubocop-ast (>= 0.3.0, < 1.0)
583
574
  ruby-progressbar (~> 1.7)
584
- unicode-display_width (>= 1.4.0, < 1.7)
575
+ unicode-display_width (>= 1.4.0, < 2.0)
576
+ rubocop-ast (0.8.0)
577
+ parser (>= 2.7.1.5)
585
578
  rubocop-checkstyle_formatter (0.4.0)
586
579
  rubocop (>= 0.35.1)
587
- rubocop-minitest (0.7.0)
588
- rubocop (>= 0.74)
589
- rubocop-performance (1.5.2)
590
- rubocop (>= 0.71.0)
591
- rubocop-rails (2.4.2)
580
+ rubocop-minitest (0.10.3)
581
+ rubocop (>= 0.87, < 2.0)
582
+ rubocop-performance (1.8.1)
583
+ rubocop (>= 0.87.0)
584
+ rubocop-ast (>= 0.4.0)
585
+ rubocop-rails (2.8.1)
586
+ activesupport (>= 4.2.0)
592
587
  rack (>= 1.1)
593
- rubocop (>= 0.72.0)
588
+ rubocop (>= 0.87.0)
589
+ rubocop-rspec (1.43.2)
590
+ rubocop (~> 0.87)
594
591
  ruby-libvirt (0.7.1)
595
592
  ruby-openid (2.9.2)
596
593
  ruby-progressbar (1.11.0)
@@ -628,8 +625,8 @@ GEM
628
625
  tilt
629
626
  scoped_search (4.1.9)
630
627
  activerecord (>= 4.2.0)
631
- sd_notify (0.1.0)
632
- secure_headers (6.3.1)
628
+ sd_notify (0.1.1)
629
+ secure_headers (6.3.2)
633
630
  selenium-webdriver (3.142.7)
634
631
  childprocess (>= 0.5, < 4.0)
635
632
  rubyzip (>= 1.2.2)
@@ -657,7 +654,7 @@ GEM
657
654
  simplecov-html (0.12.3)
658
655
  simplecov-rcov (0.2.3)
659
656
  simplecov (>= 0.4.1)
660
- simplecov_json_formatter (0.1.2)
657
+ simplecov_json_formatter (0.1.3)
661
658
  sinatra (2.1.0)
662
659
  mustermann (~> 1.0)
663
660
  rack (~> 2.2)
@@ -674,10 +671,18 @@ GEM
674
671
  actionpack (>= 4.0)
675
672
  activesupport (>= 4.0)
676
673
  sprockets (>= 3.0.0)
674
+ sqlite3 (1.4.2)
677
675
  sshkey (1.9.0)
678
676
  statsd-instrument (2.9.2)
679
677
  stomp (1.4.10)
680
678
  text (1.3.1)
679
+ theforeman-rubocop (0.0.6)
680
+ rubocop (~> 0.89.0)
681
+ rubocop-checkstyle_formatter (~> 0.4.0)
682
+ rubocop-minitest (~> 0.10.1)
683
+ rubocop-performance (~> 1.8.1)
684
+ rubocop-rails (~> 2.8.1)
685
+ rubocop-rspec (~> 1.43.2)
681
686
  thor (1.1.0)
682
687
  thread_safe (0.3.6)
683
688
  tilt (2.0.10)
@@ -689,7 +694,7 @@ GEM
689
694
  unf (0.1.4)
690
695
  unf_ext
691
696
  unf_ext (0.0.7.7)
692
- unicode-display_width (1.6.1)
697
+ unicode-display_width (1.8.0)
693
698
  uniform_notifier (1.13.2)
694
699
  validates_lengths_from_database (0.8.0)
695
700
  activerecord (>= 4)
@@ -716,7 +721,7 @@ PLATFORMS
716
721
 
717
722
  DEPENDENCIES
718
723
  activerecord-nulldb-adapter
719
- activerecord-session_store (>= 1.1.0, < 2)
724
+ activerecord-session_store (>= 2.0.0, < 3)
720
725
  amazing_print (~> 1.1)
721
726
  ancestry (>= 3.0.7, < 4, != 3.2.0)
722
727
  apipie-dsl (>= 2.2.6)
@@ -727,6 +732,7 @@ DEPENDENCIES
727
732
  benchmark-ips (>= 2.8.2)
728
733
  bootsnap
729
734
  bullet (>= 6.1.0)
735
+ byebug
730
736
  capybara (~> 3.0, < 3.32.1)
731
737
  ci_reporter_minitest
732
738
  coffee-rails (~> 5.0.0)
@@ -742,12 +748,14 @@ DEPENDENCIES
742
748
  fog-aws (>= 3.6.2, < 4)
743
749
  fog-core (= 2.1.0)
744
750
  fog-google (~> 1.11.0)
745
- fog-libvirt (>= 0.7.0)
751
+ fog-libvirt (>= 0.8.0)
746
752
  fog-openstack (>= 1.0.8, < 2.0.0)
747
- fog-ovirt (~> 1.2.5)
748
- fog-vsphere (>= 3.3.1, < 4.0)
753
+ fog-ovirt (>= 2.0.1, < 3)
754
+ fog-vsphere (>= 3.5.0, < 4.0)
749
755
  foreman
756
+ foreman-tasks!
750
757
  foreman_ansible_core
758
+ foreman_remote_execution (~> 4.5.6)
751
759
  foreman_rh_cloud!
752
760
  friendly_id (>= 5.3.0, < 5.4)
753
761
  get_process_mem
@@ -761,10 +769,10 @@ DEPENDENCIES
761
769
  i18n (~> 1.1)
762
770
  immigrant (~> 0.1)
763
771
  jquery-ui-rails (~> 6.0)
764
- jwt (~> 2.2.1)
772
+ jwt (~> 2.2.2)
765
773
  katello!
766
774
  launchy (~> 2.4)
767
- ldap_fluff (>= 0.4.7, < 1.0)
775
+ ldap_fluff (>= 0.5.0, < 1.0)
768
776
  logging (>= 1.8.0, < 3.0.0)
769
777
  logging-journald (~> 2.0)
770
778
  mail (~> 2.7)
@@ -790,8 +798,8 @@ DEPENDENCIES
790
798
  pry-rails
791
799
  pry-remote
792
800
  pry-stack_explorer
793
- puma (< 5.0)
794
- puma-plugin-systemd
801
+ puma (~> 5.1)
802
+ qpid_proton (~> 0.33.0)
795
803
  rabl (~> 0.14.2)
796
804
  rack-cors (~> 1.0.2)
797
805
  rack-jsonp
@@ -809,11 +817,10 @@ DEPENDENCIES
809
817
  rfauxfactory (~> 0.1, >= 0.1.5)
810
818
  roadie-rails (~> 2.0)
811
819
  robottelo_reporter (~> 0.1)
812
- rubocop (~> 0.80.0)
813
- rubocop-checkstyle_formatter (~> 0.2)
814
- rubocop-minitest (~> 0.7.0)
815
- rubocop-performance (~> 1.5.2)
816
- rubocop-rails (~> 2.4.2)
820
+ rubocop
821
+ rubocop-checkstyle_formatter
822
+ rubocop-performance
823
+ rubocop-rails
817
824
  ruby-libvirt (~> 0.5)
818
825
  safemode (>= 1.3.5, < 2)
819
826
  sass-rails (~> 6.0)
@@ -831,8 +838,10 @@ DEPENDENCIES
831
838
  spring (>= 1.0, < 3)
832
839
  sprockets (~> 4.0)
833
840
  sprockets-rails (~> 3.0)
841
+ sqlite3
834
842
  sshkey (~> 1.9)
835
843
  statsd-instrument (< 3)
844
+ theforeman-rubocop (~> 0.0.6)
836
845
  uglifier (>= 1.0.3)
837
846
  validates_lengths_from_database (~> 0.5)
838
847
  vcr (< 4.0.0)
@@ -2,9 +2,9 @@
2
2
 
3
3
  default: &default
4
4
  adapter: postgresql
5
- username: foreman
5
+ username: <%= ENV['PGUSER'] || 'foreman' %>
6
6
  password: foreman
7
- host: localhost
7
+ host: <%= ENV['PGHOST'] || 'localhost' %>
8
8
 
9
9
  test:
10
10
  <<: *default