katello 3.18.1 → 3.18.3.1
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/app/assets/stylesheets/katello/katello.scss +0 -72
- data/app/controllers/katello/api/registry/registry_proxies_controller.rb +4 -6
- data/app/controllers/katello/api/v2/api_controller.rb +1 -2
- data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
- data/app/controllers/katello/concerns/api/v2/authorization.rb +14 -1
- data/app/lib/actions/katello/host/update_system_purpose.rb +1 -1
- data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +1 -1
- data/app/lib/actions/katello/repository/sync.rb +5 -1
- data/app/lib/actions/pulp3/content_migration_reset.rb +22 -0
- data/app/lib/katello/util/hostgroup_facets_helper.rb +126 -0
- data/app/lib/katello/util/pulpcore_content_filters.rb +1 -1
- data/app/models/katello/concerns/hostgroup_extensions.rb +4 -2
- data/app/models/katello/concerns/pulp_database_unit.rb +12 -0
- data/app/models/katello/concerns/redhat_extensions.rb +9 -8
- data/app/models/katello/concerns/smart_proxy_extensions.rb +3 -1
- data/app/models/katello/file_unit.rb +4 -0
- data/app/models/katello/host/content_facet.rb +9 -31
- data/app/models/katello/ping.rb +35 -15
- data/app/services/katello/applicability/applicable_content_helper.rb +40 -20
- data/app/services/katello/pulp3/api/core.rb +14 -0
- data/app/services/katello/pulp3/erratum.rb +2 -1
- data/app/services/katello/pulp3/migration.rb +63 -7
- data/app/services/katello/pulp3/migration_plan.rb +2 -2
- data/app/services/katello/pulp3/migration_switchover.rb +36 -5
- data/app/services/katello/pulp3/repository.rb +40 -10
- data/app/services/katello/pulp3/repository/apt.rb +1 -2
- data/app/services/katello/pulp3/repository/yum.rb +10 -1
- data/app/services/katello/pulp3/rpm.rb +5 -1
- data/app/services/katello/pulp3/task.rb +8 -5
- data/app/services/katello/pulp3/task_group.rb +13 -5
- data/app/views/katello/sync_management/_products.html.erb +1 -1
- data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
- data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +5 -2
- data/db/migrate/20210201165835_add_migration_missing_content.rb +12 -0
- data/db/migrate/20210420140050_add_pulp3_hrefs_to_content_types_deb.rb +5 -0
- data/engines/bastion/app/assets/javascripts/bastion/auth/authorization.service.js +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +35 -40
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +1 -1
- data/lib/katello/engine.rb +1 -1
- data/lib/katello/tasks/check_config.rake +18 -0
- data/lib/katello/tasks/delete_orphaned_content.rake +1 -3
- data/lib/katello/tasks/fix_hostgroup_facets.rake +8 -0
- data/lib/katello/tasks/pulp3_content_switchover.rake +7 -3
- data/lib/katello/tasks/pulp3_migration.rake +12 -3
- data/lib/katello/tasks/pulp3_migration_abort.rake +1 -1
- data/lib/katello/tasks/pulp3_migration_approve_corrupted.rake +16 -0
- data/lib/katello/tasks/pulp3_migration_reset.rake +26 -0
- data/lib/katello/tasks/pulp3_migration_stats.rake +37 -3
- data/lib/katello/tasks/pulp3_post_migration_check.rake +1 -3
- data/lib/katello/tasks/reimport.rake +1 -1
- data/lib/katello/tasks/reports.rake +4 -1
- data/lib/katello/tasks/repository.rake +3 -5
- data/lib/katello/version.rb +1 -1
- data/webpack/components/TypeAhead/TypeAhead.js +2 -1
- data/webpack/components/TypeAhead/pf3Search/TypeAheadSearch.js +2 -1
- data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +7 -2
- data/webpack/scenes/Subscriptions/Manifest/index.js +1 -0
- metadata +28 -21
- data/lib/katello/tasks/common.rake +0 -7
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
namespace :katello do
|
|
2
|
+
desc "Marks corrupted or missing content as approved to be ignored during the migration"
|
|
3
|
+
task :approve_corrupted_migration_content => ["dynflow:client", "check_ping"] do
|
|
4
|
+
Katello::Pulp3::Migration::CORRUPTABLE_CONTENT_TYPES.each do |type|
|
|
5
|
+
type.missing_migrated_content.update_all(:ignore_missing_from_migration => true)
|
|
6
|
+
end
|
|
7
|
+
puts "Any missing or corrupt content will be ignored on migration to Pulp 3. This can be undone with 'foreman-rake katello:unapprove_corrupted_migration_content'"
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
task :unapprove_corrupted_migration_content => ["dynflow:client", "check_ping"] do
|
|
11
|
+
Katello::Pulp3::Migration::CORRUPTABLE_CONTENT_TYPES.each do |type|
|
|
12
|
+
type.ignored_missing_migrated_content.update_all(:ignore_missing_from_migration => false)
|
|
13
|
+
end
|
|
14
|
+
puts "Resetting approval on any corrupted or missing content, you may want to re-run the 'foreman-maintain content prepare' step to attempt re-migration."
|
|
15
|
+
end
|
|
16
|
+
end
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
namespace :katello do
|
|
2
|
+
desc "Reset the Pulp 2 -> Pulp 3 migration for content types that haven't been fully switched over"
|
|
3
|
+
task :pulp3_migration_reset => ["dynflow:client", "check_ping"] do
|
|
4
|
+
puts "Starting Content Migration Reset."
|
|
5
|
+
SmartProxy.pulp_primary.refresh
|
|
6
|
+
|
|
7
|
+
task = ForemanTasks.async_task(Actions::Pulp3::ContentMigrationReset, SmartProxy.pulp_primary)
|
|
8
|
+
|
|
9
|
+
if ENV['wait'].nil? || ::Foreman::Cast.to_bool(ENV['wait'])
|
|
10
|
+
until !task.pending? || task.paused?
|
|
11
|
+
sleep(20)
|
|
12
|
+
task = ForemanTasks::Task.find(task.id)
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
if task.result == 'warning' || task.result == 'pending'
|
|
16
|
+
msg = _("Content Migration Reset failed, You will want to investigate: https://#{Socket.gethostname}/foreman_tasks/tasks/#{task.id}\n")
|
|
17
|
+
$stderr.print(msg)
|
|
18
|
+
fail ForemanTasks::TaskError, task
|
|
19
|
+
else
|
|
20
|
+
puts _("Content Migration Reset completed successfully")
|
|
21
|
+
end
|
|
22
|
+
else
|
|
23
|
+
puts "Content Migration Reset started, you may monitor it at: https://#{Socket.gethostname}/foreman_tasks/tasks/#{task.id}"
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
@@ -10,7 +10,8 @@ namespace :katello do
|
|
|
10
10
|
migratable_repo_count = ::Katello::Repository.count - ::Katello::Repository.puppet_type.count -
|
|
11
11
|
::Katello::Repository.ostree_type.count - ::Katello::Repository.deb_type.count
|
|
12
12
|
|
|
13
|
-
on_demand_rpm_count = Katello::RepositoryRpm.where(:repository_id => Katello::Repository.yum_type.on_demand).
|
|
13
|
+
on_demand_rpm_count = Katello::RepositoryRpm.where(:repository_id => Katello::Repository.yum_type.on_demand).
|
|
14
|
+
select(:rpm_id).distinct.count
|
|
14
15
|
on_demand_unmigrated_rpm_count = on_demand_rpm_count - migrated_rpm_count
|
|
15
16
|
immediate_unmigrated_rpm_count = ::Katello::Rpm.count - migrated_rpm_count - on_demand_unmigrated_rpm_count
|
|
16
17
|
|
|
@@ -23,7 +24,7 @@ namespace :katello do
|
|
|
23
24
|
hours = (migration_minutes / 60) % 60
|
|
24
25
|
minutes = migration_minutes % 60
|
|
25
26
|
|
|
26
|
-
puts
|
|
27
|
+
puts "============Migration Summary================"
|
|
27
28
|
puts "Migrated/Total RPMs: #{migrated_rpm_count}/#{::Katello::Rpm.count}"
|
|
28
29
|
puts "Migrated/Total errata: #{migrated_erratum_count}/#{::Katello::RepositoryErratum.count}"
|
|
29
30
|
puts "Migrated/Total repositories: #{migrated_repo_count}/#{migratable_repo_count}"
|
|
@@ -34,8 +35,41 @@ namespace :katello do
|
|
|
34
35
|
else
|
|
35
36
|
puts "Estimated migration time based on yum content: fewer than 5 minutes"
|
|
36
37
|
end
|
|
38
|
+
|
|
37
39
|
puts
|
|
38
|
-
puts "\e[33mNote:\e[0m ensure there is sufficient storage space for /var/lib/pulp/published to
|
|
40
|
+
puts "\e[33mNote:\e[0m ensure there is sufficient storage space for /var/lib/pulp/published to triple in size before starting the migration process."
|
|
39
41
|
puts "Check the size of /var/lib/pulp/published with 'du -sh /var/lib/pulp/published/'"
|
|
42
|
+
|
|
43
|
+
displayed_warning = false
|
|
44
|
+
found_missing = false
|
|
45
|
+
path = Dir.mktmpdir('unmigratable_content-')
|
|
46
|
+
Katello::Pulp3::Migration::CORRUPTABLE_CONTENT_TYPES.each do |type|
|
|
47
|
+
if type.missing_migrated_content.any?
|
|
48
|
+
unless displayed_warning
|
|
49
|
+
displayed_warning = true
|
|
50
|
+
puts
|
|
51
|
+
puts "============Missing/Corrupted Content Summary================"
|
|
52
|
+
puts "WARNING: MISSING OR CORRUPTED CONTENT DETECTED"
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
found_missing = true
|
|
56
|
+
name = type.name.demodulize
|
|
57
|
+
puts "Corrupted or Missing #{name}: #{type.missing_migrated_content.count}/#{type.count}"
|
|
58
|
+
|
|
59
|
+
File.open(File.join(path, name), 'w') do |file|
|
|
60
|
+
text = type.missing_migrated_content.map(&:filename).join("\n") + "\n"
|
|
61
|
+
file.write(text)
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
if found_missing
|
|
67
|
+
puts "Corrupted or missing content has been detected, you can examine the list of content in #{path} and take action by either:"
|
|
68
|
+
puts "1. Performing a 'Verify Checksum' sync under Advanced Sync Options, let it complete, and re-running the migration"
|
|
69
|
+
puts "2. Deleting/disabling the affected repositories and running orphan cleanup (foreman-rake katello:delete_orphaned_content) and re-running the migration"
|
|
70
|
+
puts "3. Manually correcting files on the filesystem in /var/lib/pulp/content/ and re-running the migration"
|
|
71
|
+
puts "4. Mark currently corrupted or missing content as skipped (foreman-rake katello:approve_corrupted_migration_content). This will skip migration of missing or corrupted content."
|
|
72
|
+
puts
|
|
73
|
+
end
|
|
40
74
|
end
|
|
41
75
|
end
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
require File.expand_path("../engine", File.dirname(__FILE__))
|
|
2
|
-
load "#{Katello::Engine.root}/lib/katello/tasks/common.rake"
|
|
3
|
-
|
|
4
2
|
namespace :katello do
|
|
5
3
|
desc "Runs a post Pulp3 migration check for supported content types."
|
|
6
|
-
task :pulp3_post_migration_check => [:
|
|
4
|
+
task :pulp3_post_migration_check => ["dynflow:client"] do
|
|
7
5
|
User.current = User.anonymous_admin
|
|
8
6
|
repository_types = Katello::Pulp3::Migration.repository_types_for_migration
|
|
9
7
|
|
|
@@ -2,7 +2,7 @@ require File.expand_path("../engine", File.dirname(__FILE__))
|
|
|
2
2
|
|
|
3
3
|
namespace :katello do
|
|
4
4
|
desc "Runs a katello ping and prints out the statuses of each service"
|
|
5
|
-
task :check_ping => :environment do
|
|
5
|
+
task :check_ping => [:environment, "dynflow:client"] do
|
|
6
6
|
::User.current = ::User.anonymous_admin
|
|
7
7
|
ping_results = Katello::Ping.ping
|
|
8
8
|
if ping_results[:status] != "ok"
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
load "#{Rails.root}/lib/tasks/reports.rake"
|
|
2
2
|
|
|
3
3
|
#Katello reports can generate a foreman task, so mark the task as a dynflow client
|
|
4
|
-
["reports:daily", "reports:weekly", "reports:monthly"].each
|
|
4
|
+
["reports:daily", "reports:weekly", "reports:monthly"].each do |task|
|
|
5
|
+
Rake::Task[task].clear
|
|
6
|
+
Rake::Task[task].enhance ["dynflow:client"]
|
|
7
|
+
end
|
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
load "#{Katello::Engine.root}/lib/katello/tasks/common.rake"
|
|
2
|
-
|
|
3
1
|
namespace :katello do
|
|
4
2
|
def commit?
|
|
5
3
|
ENV['COMMIT'] == 'true' || ENV['FOREMAN_UPGRADE'] == '1'
|
|
6
4
|
end
|
|
7
5
|
|
|
8
6
|
desc "Check for repositories that have not been published since their last sync, and republish if they have."
|
|
9
|
-
task :publish_unpublished_repositories => ["
|
|
7
|
+
task :publish_unpublished_repositories => ["dynflow:client", "check_ping"] do
|
|
10
8
|
needing_publish = []
|
|
11
9
|
Organization.find_each do |org|
|
|
12
10
|
if org.default_content_view && !org.default_content_view.versions.empty?
|
|
@@ -27,7 +25,7 @@ namespace :katello do
|
|
|
27
25
|
end
|
|
28
26
|
|
|
29
27
|
desc "Regnerate metadata for all repositories. Specify CONTENT_VIEW=name and LIFECYCLE_ENVIRONMENT=name to narrow repositories."
|
|
30
|
-
task :regenerate_repo_metadata => ["
|
|
28
|
+
task :regenerate_repo_metadata => ["dynflow:client", "check_ping"] do
|
|
31
29
|
User.current = User.anonymous_api_admin
|
|
32
30
|
repos = lookup_repositories
|
|
33
31
|
|
|
@@ -40,7 +38,7 @@ namespace :katello do
|
|
|
40
38
|
end
|
|
41
39
|
|
|
42
40
|
desc "Refresh repository metadata for all repositories. Specify CONTENT_VIEW=name and LIFECYCLE_ENVIRONMENT=name to narrow repositories."
|
|
43
|
-
task :refresh_pulp_repo_details => ["
|
|
41
|
+
task :refresh_pulp_repo_details => ["dynflow:client", "check_ping"] do
|
|
44
42
|
User.current = User.anonymous_api_admin
|
|
45
43
|
repos = lookup_repositories
|
|
46
44
|
|
data/lib/katello/version.rb
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React, { Component } from 'react';
|
|
2
2
|
import Downshift from 'downshift';
|
|
3
3
|
import PropTypes from 'prop-types';
|
|
4
|
+
import { translate as __ } from 'foremanReact/common/I18n';
|
|
4
5
|
|
|
5
6
|
import TypeAheadSearch from './pf3Search/TypeAheadSearch';
|
|
6
7
|
// eslint-disable-next-line import/no-named-default
|
|
@@ -101,7 +102,7 @@ TypeAhead.propTypes = {
|
|
|
101
102
|
};
|
|
102
103
|
|
|
103
104
|
TypeAhead.defaultProps = {
|
|
104
|
-
actionText: 'Search',
|
|
105
|
+
actionText: __('Search'),
|
|
105
106
|
initialInputValue: '',
|
|
106
107
|
patternfly4: false,
|
|
107
108
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { InputGroup, Button, Icon } from 'patternfly-react';
|
|
3
3
|
import PropTypes from 'prop-types';
|
|
4
|
+
import { translate as __ } from 'foremanReact/common/I18n';
|
|
4
5
|
|
|
5
6
|
import TypeAheadInput from './TypeAheadInput';
|
|
6
7
|
import TypeAheadItems from './TypeAheadItems';
|
|
@@ -46,7 +47,7 @@ TypeAheadSearch.propTypes = {
|
|
|
46
47
|
};
|
|
47
48
|
|
|
48
49
|
TypeAheadSearch.defaultProps = {
|
|
49
|
-
actionText: 'Search',
|
|
50
|
+
actionText: __('Search'),
|
|
50
51
|
};
|
|
51
52
|
|
|
52
53
|
export default TypeAheadSearch;
|
|
@@ -51,8 +51,11 @@ class ManageManifestModal extends Component {
|
|
|
51
51
|
showDeleteManifestModal = () =>
|
|
52
52
|
this.props.setModalOpen({ id: DELETE_MANIFEST_MODAL_ID });
|
|
53
53
|
|
|
54
|
-
hideDeleteManifestModal = () =>
|
|
55
|
-
this.props.
|
|
54
|
+
hideDeleteManifestModal = () => {
|
|
55
|
+
if (this.props.deleteManifestModalExists) {
|
|
56
|
+
this.props.setModalClosed({ id: DELETE_MANIFEST_MODAL_ID });
|
|
57
|
+
}
|
|
58
|
+
};
|
|
56
59
|
|
|
57
60
|
updateRepositoryUrl = (event) => {
|
|
58
61
|
this.setState({ redhat_repository_url: event.target.value });
|
|
@@ -326,6 +329,7 @@ ManageManifestModal.propTypes = {
|
|
|
326
329
|
canImportManifest: PropTypes.bool,
|
|
327
330
|
canDeleteManifest: PropTypes.bool,
|
|
328
331
|
isManifestImported: PropTypes.bool,
|
|
332
|
+
deleteManifestModalExists: PropTypes.bool,
|
|
329
333
|
canEditOrganizations: PropTypes.bool,
|
|
330
334
|
disableManifestActions: PropTypes.bool,
|
|
331
335
|
disabledReason: PropTypes.string,
|
|
@@ -351,6 +355,7 @@ ManageManifestModal.defaultProps = {
|
|
|
351
355
|
canImportManifest: false,
|
|
352
356
|
canDeleteManifest: false,
|
|
353
357
|
isManifestImported: false,
|
|
358
|
+
deleteManifestModalExists: false,
|
|
354
359
|
canEditOrganizations: false,
|
|
355
360
|
simpleContentAccess: false,
|
|
356
361
|
simpleContentAccessEligible: undefined,
|
|
@@ -20,6 +20,7 @@ const mapStateToProps = state => ({
|
|
|
20
20
|
simpleContentAccess: selectSimpleContentAccessEnabled(state),
|
|
21
21
|
isManifestImported: selectIsManifestImported(state),
|
|
22
22
|
modalOpenState: state.foremanModals.ManageManifestModal,
|
|
23
|
+
deleteManifestModalExists: !!state.foremanModals.deleteManifestModal,
|
|
23
24
|
manifestActionStarted: selectManifestActionStarted(state),
|
|
24
25
|
simpleContentAccessEligible: selectSimpleContentAccessEligible(state),
|
|
25
26
|
});
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: katello
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.18.1
|
|
4
|
+
version: 3.18.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- N/A
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-06-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -87,6 +87,9 @@ dependencies:
|
|
|
87
87
|
- - ">="
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
89
|
version: 0.14.1
|
|
90
|
+
- - "<"
|
|
91
|
+
- !ruby/object:Gem::Version
|
|
92
|
+
version: '4.0'
|
|
90
93
|
type: :runtime
|
|
91
94
|
prerelease: false
|
|
92
95
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -94,6 +97,9 @@ dependencies:
|
|
|
94
97
|
- - ">="
|
|
95
98
|
- !ruby/object:Gem::Version
|
|
96
99
|
version: 0.14.1
|
|
100
|
+
- - "<"
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: '4.0'
|
|
97
103
|
- !ruby/object:Gem::Dependency
|
|
98
104
|
name: foreman_remote_execution
|
|
99
105
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -360,46 +366,40 @@ dependencies:
|
|
|
360
366
|
requirements:
|
|
361
367
|
- - ">="
|
|
362
368
|
- !ruby/object:Gem::Version
|
|
363
|
-
version: 3.
|
|
369
|
+
version: 3.10.0
|
|
364
370
|
- - "<"
|
|
365
371
|
- !ruby/object:Gem::Version
|
|
366
|
-
version: 3.
|
|
372
|
+
version: 3.11.0
|
|
367
373
|
type: :runtime
|
|
368
374
|
prerelease: false
|
|
369
375
|
version_requirements: !ruby/object:Gem::Requirement
|
|
370
376
|
requirements:
|
|
371
377
|
- - ">="
|
|
372
378
|
- !ruby/object:Gem::Version
|
|
373
|
-
version: 3.
|
|
379
|
+
version: 3.10.0
|
|
374
380
|
- - "<"
|
|
375
381
|
- !ruby/object:Gem::Version
|
|
376
|
-
version: 3.
|
|
382
|
+
version: 3.11.0
|
|
377
383
|
- !ruby/object:Gem::Dependency
|
|
378
384
|
name: pulp_2to3_migration_client
|
|
379
385
|
requirement: !ruby/object:Gem::Requirement
|
|
380
386
|
requirements:
|
|
381
387
|
- - ">="
|
|
382
388
|
- !ruby/object:Gem::Version
|
|
383
|
-
version: 0.
|
|
389
|
+
version: 0.8.0
|
|
384
390
|
- - "<"
|
|
385
391
|
- !ruby/object:Gem::Version
|
|
386
|
-
version: 0.
|
|
387
|
-
- - "!="
|
|
388
|
-
- !ruby/object:Gem::Version
|
|
389
|
-
version: 0.4.0
|
|
392
|
+
version: 1.0.0
|
|
390
393
|
type: :runtime
|
|
391
394
|
prerelease: false
|
|
392
395
|
version_requirements: !ruby/object:Gem::Requirement
|
|
393
396
|
requirements:
|
|
394
397
|
- - ">="
|
|
395
398
|
- !ruby/object:Gem::Version
|
|
396
|
-
version: 0.
|
|
399
|
+
version: 0.8.0
|
|
397
400
|
- - "<"
|
|
398
401
|
- !ruby/object:Gem::Version
|
|
399
|
-
version: 0.
|
|
400
|
-
- - "!="
|
|
401
|
-
- !ruby/object:Gem::Version
|
|
402
|
-
version: 0.4.0
|
|
402
|
+
version: 1.0.0
|
|
403
403
|
- !ruby/object:Gem::Dependency
|
|
404
404
|
name: pulp_certguard_client
|
|
405
405
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -1072,6 +1072,7 @@ files:
|
|
|
1072
1072
|
- app/lib/actions/pulp3/content_guard/refresh_all_distributions.rb
|
|
1073
1073
|
- app/lib/actions/pulp3/content_migration.rb
|
|
1074
1074
|
- app/lib/actions/pulp3/content_migration_presenter.rb
|
|
1075
|
+
- app/lib/actions/pulp3/content_migration_reset.rb
|
|
1075
1076
|
- app/lib/actions/pulp3/content_view/delete_repository_references.rb
|
|
1076
1077
|
- app/lib/actions/pulp3/content_view_version/create_exporter.rb
|
|
1077
1078
|
- app/lib/actions/pulp3/content_view_version/create_importer.rb
|
|
@@ -1181,6 +1182,7 @@ files:
|
|
|
1181
1182
|
- app/lib/katello/util/docker_manifest_clause_generator.rb
|
|
1182
1183
|
- app/lib/katello/util/errata.rb
|
|
1183
1184
|
- app/lib/katello/util/filter_clause_generator.rb
|
|
1185
|
+
- app/lib/katello/util/hostgroup_facets_helper.rb
|
|
1184
1186
|
- app/lib/katello/util/http_proxy.rb
|
|
1185
1187
|
- app/lib/katello/util/model.rb
|
|
1186
1188
|
- app/lib/katello/util/module_stream_clause_generator.rb
|
|
@@ -2140,6 +2142,8 @@ files:
|
|
|
2140
2142
|
- db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb
|
|
2141
2143
|
- db/migrate/20201021150008_add_import_only_to_katello_content_view.rb
|
|
2142
2144
|
- db/migrate/20201119211133_pulp3_migration_progress.rb
|
|
2145
|
+
- db/migrate/20210201165835_add_migration_missing_content.rb
|
|
2146
|
+
- db/migrate/20210420140050_add_pulp3_hrefs_to_content_types_deb.rb
|
|
2143
2147
|
- db/seeds.d/101-locations.rb
|
|
2144
2148
|
- db/seeds.d/102-organizations.rb
|
|
2145
2149
|
- db/seeds.d/104-proxy.rb
|
|
@@ -4482,11 +4486,12 @@ files:
|
|
|
4482
4486
|
- lib/katello/repository_types/puppet.rb
|
|
4483
4487
|
- lib/katello/repository_types/yum.rb
|
|
4484
4488
|
- lib/katello/scheduled_jobs.rb
|
|
4489
|
+
- lib/katello/tasks/check_config.rake
|
|
4485
4490
|
- lib/katello/tasks/clean_backend_objects.rake
|
|
4486
4491
|
- lib/katello/tasks/clean_old_file_repos.rake
|
|
4487
4492
|
- lib/katello/tasks/clean_published_repo_directories.rake
|
|
4488
|
-
- lib/katello/tasks/common.rake
|
|
4489
4493
|
- lib/katello/tasks/delete_orphaned_content.rake
|
|
4494
|
+
- lib/katello/tasks/fix_hostgroup_facets.rake
|
|
4490
4495
|
- lib/katello/tasks/import_applicability.rake
|
|
4491
4496
|
- lib/katello/tasks/import_subscriptions.rake
|
|
4492
4497
|
- lib/katello/tasks/jenkins.rake
|
|
@@ -4494,6 +4499,8 @@ files:
|
|
|
4494
4499
|
- lib/katello/tasks/pulp3_content_switchover.rake
|
|
4495
4500
|
- lib/katello/tasks/pulp3_migration.rake
|
|
4496
4501
|
- lib/katello/tasks/pulp3_migration_abort.rake
|
|
4502
|
+
- lib/katello/tasks/pulp3_migration_approve_corrupted.rake
|
|
4503
|
+
- lib/katello/tasks/pulp3_migration_reset.rake
|
|
4497
4504
|
- lib/katello/tasks/pulp3_migration_stats.rake
|
|
4498
4505
|
- lib/katello/tasks/pulp3_post_migration_check.rake
|
|
4499
4506
|
- lib/katello/tasks/receptor/extract_orgs.rake
|
|
@@ -5059,7 +5066,7 @@ homepage: http://www.katello.org
|
|
|
5059
5066
|
licenses:
|
|
5060
5067
|
- GPL-2.0
|
|
5061
5068
|
metadata: {}
|
|
5062
|
-
post_install_message:
|
|
5069
|
+
post_install_message:
|
|
5063
5070
|
rdoc_options: []
|
|
5064
5071
|
require_paths:
|
|
5065
5072
|
- lib
|
|
@@ -5074,8 +5081,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
5074
5081
|
- !ruby/object:Gem::Version
|
|
5075
5082
|
version: '0'
|
|
5076
5083
|
requirements: []
|
|
5077
|
-
rubygems_version: 3.1.
|
|
5078
|
-
signing_key:
|
|
5084
|
+
rubygems_version: 3.1.6
|
|
5085
|
+
signing_key:
|
|
5079
5086
|
specification_version: 4
|
|
5080
5087
|
summary: Content and Subscription Management plugin for Foreman
|
|
5081
5088
|
test_files: []
|