katello 4.5.0 → 4.6.0.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of katello might be problematic. Click here for more details.

Files changed (458) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb +10 -0
  3. data/app/controllers/katello/api/v2/activation_keys_controller.rb +7 -0
  4. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +52 -22
  5. data/app/controllers/katello/api/v2/content_exports_controller.rb +33 -3
  6. data/app/controllers/katello/api/v2/content_uploads_controller.rb +2 -0
  7. data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
  8. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
  9. data/app/controllers/katello/api/v2/debs_controller.rb +42 -10
  10. data/app/controllers/katello/api/v2/host_collections_controller.rb +5 -1
  11. data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -0
  12. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +9 -1
  13. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +8 -1
  14. data/app/controllers/katello/api/v2/organizations_controller.rb +3 -1
  15. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +8 -0
  16. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +34 -11
  17. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +7 -16
  18. data/app/lib/actions/katello/alternate_content_source/alternate_content_source_common.rb +16 -0
  19. data/app/lib/actions/katello/alternate_content_source/create.rb +11 -5
  20. data/app/lib/actions/katello/alternate_content_source/destroy.rb +3 -4
  21. data/app/lib/actions/katello/alternate_content_source/refresh.rb +3 -5
  22. data/app/lib/actions/katello/alternate_content_source/update.rb +57 -13
  23. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -2
  24. data/app/lib/actions/katello/content_view/promote_to_environment.rb +4 -2
  25. data/app/lib/actions/katello/content_view/publish.rb +5 -2
  26. data/app/lib/actions/katello/organization/environment_contents_refresh.rb +20 -0
  27. data/app/lib/actions/katello/organization/manifest_refresh.rb +10 -4
  28. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +1 -9
  29. data/app/lib/actions/katello/repository/create.rb +9 -0
  30. data/app/lib/actions/katello/repository/destroy.rb +21 -0
  31. data/app/lib/actions/katello/repository/errata_mail.rb +3 -3
  32. data/app/lib/actions/katello/repository/refresh_repository.rb +3 -0
  33. data/app/lib/actions/katello/repository/update.rb +33 -0
  34. data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
  35. data/app/lib/actions/pulp3/alternate_content_source/create.rb +5 -4
  36. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +5 -4
  37. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +4 -4
  38. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +4 -4
  39. data/app/lib/actions/pulp3/alternate_content_source/refresh.rb +4 -4
  40. data/app/lib/actions/pulp3/alternate_content_source/update.rb +4 -4
  41. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +5 -5
  42. data/app/lib/actions/pulp3/capsule_content/reclaim_space.rb +1 -0
  43. data/app/lib/actions/pulp3/content_view_version/create_export_history.rb +3 -1
  44. data/app/lib/actions/pulp3/content_view_version/create_exporter.rb +9 -2
  45. data/app/lib/actions/pulp3/content_view_version/create_syncable_export_history.rb +45 -0
  46. data/app/lib/actions/pulp3/content_view_version/destroy_exporter.rb +6 -1
  47. data/app/lib/actions/pulp3/content_view_version/export.rb +8 -3
  48. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +3 -3
  49. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +6 -7
  50. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +2 -2
  51. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh_remote.rb +18 -0
  52. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +3 -3
  53. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +28 -13
  54. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +4 -2
  55. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +4 -2
  56. data/app/lib/actions/pulp3/orchestration/content_view_version/syncable_export.rb +82 -0
  57. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +1 -1
  58. data/app/lib/katello/concerns/base_template_scope_extensions.rb +1 -1
  59. data/app/lib/katello/errors.rb +1 -1
  60. data/app/lib/katello/resources/candlepin/owner.rb +9 -2
  61. data/app/lib/katello/validators/alternate_content_source_products_validator.rb +17 -0
  62. data/app/models/katello/alternate_content_source.rb +39 -8
  63. data/app/models/katello/alternate_content_source_product.rb +13 -0
  64. data/app/models/katello/concerns/host_managed_extensions.rb +13 -2
  65. data/app/models/katello/concerns/pulp_database_unit.rb +2 -2
  66. data/app/models/katello/concerns/smart_proxy_extensions.rb +5 -6
  67. data/app/models/katello/content_view.rb +41 -29
  68. data/app/models/katello/content_view_deb_filter.rb +51 -0
  69. data/app/models/katello/content_view_deb_filter_rule.rb +24 -0
  70. data/app/models/katello/content_view_filter.rb +10 -3
  71. data/app/models/katello/glue/candlepin/owner.rb +0 -1
  72. data/app/models/katello/installed_package.rb +1 -0
  73. data/app/models/katello/product.rb +3 -0
  74. data/app/models/katello/repository.rb +2 -0
  75. data/app/models/katello/smart_proxy_alternate_content_source.rb +6 -0
  76. data/app/services/cert/certs.rb +8 -16
  77. data/app/services/katello/organization_creator.rb +18 -7
  78. data/app/services/katello/pulp/server.rb +2 -2
  79. data/app/services/katello/pulp3/alternate_content_source.rb +22 -4
  80. data/app/services/katello/pulp3/api/apt.rb +12 -0
  81. data/app/services/katello/pulp3/api/core.rb +8 -0
  82. data/app/services/katello/pulp3/content_view_version/export.rb +38 -11
  83. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +3 -1
  84. data/app/services/katello/pulp3/content_view_version/syncable_format_export.rb +34 -0
  85. data/app/services/katello/pulp3/deb.rb +3 -1
  86. data/app/services/katello/pulp3/pulp_content_unit.rb +2 -0
  87. data/app/services/katello/pulp3/repository/apt.rb +186 -2
  88. data/app/services/katello/pulp3/repository.rb +4 -3
  89. data/app/services/katello/pulp3/service_common.rb +1 -1
  90. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +1 -1
  91. data/app/views/foreman/smart_proxies/show.html.erb +3 -3
  92. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +18 -3
  93. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +20 -0
  94. data/app/views/katello/api/v2/ansible_collections/compare.json.rabl +10 -0
  95. data/app/views/katello/api/v2/content_view_filters/base.json.rabl +5 -0
  96. data/app/views/katello/api/v2/module_streams/compare.json.rabl +10 -0
  97. data/app/views/katello/api/v2/repository_sets/show.json.rabl +4 -0
  98. data/app/views/katello/layouts/foreman_with_bastion.html.erb +1 -1
  99. data/app/views/katello/layouts/react.html.erb +1 -1
  100. data/app/views/overrides/organizations/_edit_override.html.erb +5 -8
  101. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  102. data/app/views/overrides/organizations/_step_1_override.html.erb +5 -0
  103. data/ca/redhat-uep.pem +18 -23
  104. data/config/katello.yaml.example +0 -2
  105. data/config/routes/api/v2.rb +2 -0
  106. data/config/routes/overrides.rb +1 -0
  107. data/db/migrate/20201116161820_create_content_view_deb_filter_rules.rb +17 -0
  108. data/db/migrate/20211220185935_clean_duplicate_content_units.rb +11 -9
  109. data/db/migrate/20220524132259_remove_last_refreshed_from_katello_alternate_content_sources.rb +5 -0
  110. data/db/migrate/20220601163911_add_vendor_to_katello_installed_packages.rb +5 -0
  111. data/db/migrate/20220610165621_add_repositories_and_products_to_acs.rb +23 -0
  112. data/engines/bastion/app/views/bastion/layouts/application.html.erb +1 -1
  113. data/engines/bastion/app/views/bastion/layouts/application_ie.html.erb +1 -1
  114. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -1
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js +2 -0
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment.controller.js +2 -0
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html +1 -1
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +3 -3
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +4 -5
  121. data/engines/bastion_katello/lib/bastion_katello/engine.rb +0 -1
  122. data/lib/katello/engine.rb +1 -2
  123. data/lib/katello/permission_creator.rb +2 -2
  124. data/lib/katello/permissions/host_permissions.rb +1 -0
  125. data/lib/katello/plugin.rb +6 -12
  126. data/lib/katello/version.rb +1 -1
  127. data/locale/action_names.rb +49 -46
  128. data/locale/bn/katello.po +361 -53
  129. data/locale/cs/katello.po +361 -53
  130. data/locale/de/katello.po +366 -58
  131. data/locale/en/katello.po +361 -53
  132. data/locale/es/katello.po +364 -56
  133. data/locale/fr/katello.po +374 -66
  134. data/locale/gu/katello.po +361 -53
  135. data/locale/hi/katello.po +361 -53
  136. data/locale/it/katello.po +361 -53
  137. data/locale/ja/katello.po +374 -66
  138. data/locale/katello.pot +1626 -1079
  139. data/locale/kn/katello.po +361 -53
  140. data/locale/ko/katello.po +361 -53
  141. data/locale/mr/katello.po +361 -53
  142. data/locale/or/katello.po +361 -53
  143. data/locale/pa/katello.po +361 -53
  144. data/locale/pt/katello.po +361 -53
  145. data/locale/pt_BR/katello.po +364 -56
  146. data/locale/ru/katello.po +361 -53
  147. data/locale/ta/katello.po +361 -53
  148. data/locale/te/katello.po +361 -53
  149. data/locale/zh_CN/katello.po +374 -66
  150. data/locale/zh_TW/katello.po +361 -53
  151. data/webpack/components/EditableTextInput/EditableTextInput.js +3 -16
  152. data/webpack/components/EditableTextInput/PencilEditButton.js +33 -0
  153. data/webpack/components/Errata/index.js +18 -3
  154. data/webpack/components/Loading.js +1 -1
  155. data/webpack/components/RoutedTabs/index.js +1 -17
  156. data/webpack/components/Search/Search.js +0 -1
  157. data/webpack/components/Search/__tests__/search.test.js +1 -2
  158. data/webpack/components/SelectAllCheckbox/index.js +7 -4
  159. data/webpack/components/SelectableDropdown/SelectableDropdown.js +1 -0
  160. data/webpack/components/Table/EmptyStateMessage.js +77 -2
  161. data/webpack/components/Table/MainTable.js +46 -4
  162. data/webpack/components/Table/TableHooks.js +8 -4
  163. data/webpack/components/Table/TableWrapper.js +14 -8
  164. data/webpack/components/TypeAhead/TypeAhead.js +26 -11
  165. data/webpack/components/TypeAhead/pf3Search/TypeAheadItems.js +1 -1
  166. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +1 -0
  167. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +2 -1
  168. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +9 -4
  169. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeActions.js +37 -0
  170. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +173 -0
  171. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.scss +6 -0
  172. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeConstants.js +6 -0
  173. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +301 -0
  174. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeSelectors.js +25 -0
  175. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeCard.test.js +108 -0
  176. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeEditModal.test.js +161 -0
  177. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +12 -12
  178. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +100 -0
  179. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +26 -4
  180. data/webpack/components/extensions/HostDetails/HostDetailsConstants.js +3 -1
  181. data/webpack/components/extensions/HostDetails/HostDetailsReducer.js +14 -0
  182. data/webpack/components/extensions/HostDetails/HostDetailsSelectors.js +8 -2
  183. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +9 -1
  184. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +23 -8
  185. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +11 -9
  186. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +58 -8
  187. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +2 -0
  188. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +30 -3
  189. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +3 -0
  190. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +48 -20
  191. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +1 -10
  192. data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +1 -1
  193. data/webpack/components/extensions/RegistrationCommands/index.js +49 -17
  194. data/webpack/containers/Application/config.js +5 -10
  195. data/webpack/global_index.js +19 -7
  196. data/webpack/global_test_setup.js +14 -2
  197. data/webpack/ouia_id_check.js +95 -0
  198. data/webpack/redux/actions/RedHatRepositories/helpers.js +2 -0
  199. data/webpack/redux/reducers/index.js +2 -4
  200. data/webpack/scenes/AlternateContentSources/ACSActions.js +36 -3
  201. data/webpack/scenes/AlternateContentSources/ACSConstants.js +3 -0
  202. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +15 -6
  203. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +73 -42
  204. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +26 -10
  205. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSProducts.js +44 -0
  206. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +59 -45
  207. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +4 -3
  208. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +0 -1
  209. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +35 -19
  210. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +120 -13
  211. data/webpack/scenes/AlternateContentSources/Create/__tests__/products.fixtures.json +92 -0
  212. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +459 -0
  213. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +354 -0
  214. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +104 -0
  215. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +120 -0
  216. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +118 -0
  217. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +118 -0
  218. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +242 -0
  219. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +106 -0
  220. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsDetails.fixtures.json +49 -0
  221. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsProducts.fixtures.json +95 -0
  222. data/webpack/scenes/AlternateContentSources/Details/__tests__/simplifiedAcsDetails.fixtures.json +39 -0
  223. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +215 -87
  224. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.scss +3 -0
  225. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +1 -2
  226. data/webpack/scenes/Content/__tests__/contentTable.test.js +1 -2
  227. data/webpack/scenes/ContentViews/ContentViewsConstants.js +15 -4
  228. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +1 -2
  229. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +2 -0
  230. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +1 -2
  231. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +113 -0
  232. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +89 -0
  233. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +32 -9
  234. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +13 -3
  235. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +39 -27
  236. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +236 -0
  237. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +1 -0
  238. data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +10 -0
  239. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +3 -0
  240. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +3 -1
  241. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +17 -4
  242. data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +1 -0
  243. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +34 -22
  244. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +97 -0
  245. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +1 -2
  246. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +128 -0
  247. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +56 -3
  248. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +62 -8
  249. data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +1 -5
  250. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +1 -2
  251. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +32 -2
  252. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +1 -2
  253. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +1 -2
  254. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVContainerImageFilterContent.fixtures.json +13 -0
  255. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVPackageFilterRules.fixtures.json +13 -0
  256. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyContentViewFilters.fixtures.json +13 -0
  257. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -2
  258. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +5 -1
  259. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +1 -2
  260. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +3 -0
  261. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +143 -0
  262. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.scss +51 -0
  263. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +314 -0
  264. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareHeader.js +186 -0
  265. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +74 -0
  266. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/AnsibleCollectionsCompareAllContentData.fixtures.json +63 -0
  267. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +657 -0
  268. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionEmptyContentCompareData.fixtures.json +14 -0
  269. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ContainerTagsCompareAllContentData.fixtures.json +95 -0
  270. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/DebPackagesCompareAllContentData.fixtures.json +87 -0
  271. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareAllContentData.fixtures.json +319 -0
  272. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareThreeContentTypesData.fixtures.json +131 -0
  273. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareAllContentData.fixtures.json +51 -0
  274. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareThreeContentTypesData.fixtures.json +48 -0
  275. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ModuleStreamsCompareAllContentData.fixtures.json +239 -0
  276. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PackageGroupsCompareAllContentData.fixtures.json +51 -0
  277. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PythonPackagesCompareAllContentData.fixtures.json +315 -0
  278. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareAllContentData.fixtures.json +470 -0
  279. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareThreeContentTypesData.fixtures.json +475 -0
  280. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewDetails.fixtures.json +160 -0
  281. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +161 -0
  282. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +154 -0
  283. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +211 -0
  284. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +1013 -0
  285. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +145 -0
  286. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +145 -0
  287. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +102 -36
  288. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +1 -2
  289. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +4 -2
  290. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +1 -2
  291. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +1 -2
  292. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +113 -40
  293. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +96 -81
  294. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +1 -2
  295. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +7 -2
  296. data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +1 -1
  297. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +0 -30
  298. data/webpack/test-utils/nockWrapper.js +7 -0
  299. metadata +82 -167
  300. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +0 -34
  301. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -751
  302. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-deletion.controller.js +0 -42
  303. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +0 -81
  304. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js +0 -65
  305. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +0 -82
  306. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-environments.controller.js +0 -76
  307. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion.controller.js +0 -160
  308. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html +0 -58
  309. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html +0 -94
  310. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html +0 -76
  311. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html +0 -88
  312. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html +0 -73
  313. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-component.factory.js +0 -32
  314. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js +0 -75
  315. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js +0 -68
  316. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -81
  317. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -81
  318. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html +0 -24
  319. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-deb-repositories.controller.js +0 -50
  320. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js +0 -42
  321. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-file-repositories.controller.js +0 -50
  322. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js +0 -42
  323. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js +0 -45
  324. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-deb-repositories-list.controller.js +0 -48
  325. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +0 -100
  326. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js +0 -49
  327. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-file-repositories-list.controller.js +0 -48
  328. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js +0 -49
  329. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js +0 -129
  330. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-publish.controller.js +0 -46
  331. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js +0 -42
  332. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js +0 -91
  333. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js +0 -240
  334. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js +0 -115
  335. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-module-stream-filter.controller.js +0 -68
  336. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js +0 -66
  337. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js +0 -77
  338. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js +0 -137
  339. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js +0 -36
  340. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js +0 -78
  341. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter.controller.js +0 -74
  342. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-content-type.filter.js +0 -21
  343. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js +0 -34
  344. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js +0 -30
  345. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js +0 -86
  346. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-rule-matching-package-modal.controller.js +0 -37
  347. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-type.filter.js +0 -21
  348. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js +0 -66
  349. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js +0 -85
  350. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/module-stream-list-filter.controller.js +0 -73
  351. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js +0 -100
  352. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js +0 -179
  353. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js +0 -75
  354. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/rule.factory.js +0 -21
  355. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata-filter.html +0 -9
  356. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html +0 -75
  357. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html +0 -28
  358. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html +0 -65
  359. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html +0 -19
  360. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html +0 -63
  361. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html +0 -50
  362. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html +0 -9
  363. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html +0 -121
  364. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html +0 -43
  365. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html +0 -85
  366. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html +0 -58
  367. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html +0 -43
  368. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html +0 -62
  369. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html +0 -182
  370. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html +0 -28
  371. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html +0 -42
  372. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html +0 -43
  373. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html +0 -2
  374. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js +0 -47
  375. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js +0 -22
  376. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html +0 -36
  377. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html +0 -20
  378. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html +0 -87
  379. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html +0 -4
  380. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +0 -144
  381. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html +0 -114
  382. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html +0 -87
  383. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -63
  384. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html +0 -87
  385. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html +0 -59
  386. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +0 -58
  387. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html +0 -116
  388. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -126
  389. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +0 -78
  390. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +0 -127
  391. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +0 -138
  392. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js +0 -59
  393. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html +0 -25
  394. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html +0 -19
  395. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html +0 -19
  396. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html +0 -15
  397. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html +0 -23
  398. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html +0 -48
  399. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html +0 -21
  400. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-module-streams.html +0 -8
  401. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html +0 -21
  402. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html +0 -27
  403. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html +0 -42
  404. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -83
  405. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +0 -74
  406. data/lib/katello/tasks/reset.rake.bak +0 -67
  407. data/locale/bn/LC_MESSAGES/katello.mo +0 -0
  408. data/locale/cs/LC_MESSAGES/katello.mo +0 -0
  409. data/locale/de/LC_MESSAGES/katello.mo +0 -0
  410. data/locale/en/LC_MESSAGES/katello.mo +0 -0
  411. data/locale/es/LC_MESSAGES/katello.mo +0 -0
  412. data/locale/fr/LC_MESSAGES/katello.mo +0 -0
  413. data/locale/gu/LC_MESSAGES/katello.mo +0 -0
  414. data/locale/hi/LC_MESSAGES/katello.mo +0 -0
  415. data/locale/it/LC_MESSAGES/katello.mo +0 -0
  416. data/locale/ja/LC_MESSAGES/katello.mo +0 -0
  417. data/locale/kn/LC_MESSAGES/katello.mo +0 -0
  418. data/locale/ko/LC_MESSAGES/katello.mo +0 -0
  419. data/locale/mr/LC_MESSAGES/katello.mo +0 -0
  420. data/locale/or/LC_MESSAGES/katello.mo +0 -0
  421. data/locale/pa/LC_MESSAGES/katello.mo +0 -0
  422. data/locale/pt/LC_MESSAGES/katello.mo +0 -0
  423. data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
  424. data/locale/ru/LC_MESSAGES/katello.mo +0 -0
  425. data/locale/ta/LC_MESSAGES/katello.mo +0 -0
  426. data/locale/te/LC_MESSAGES/katello.mo +0 -0
  427. data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
  428. data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
  429. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsActions.js +0 -30
  430. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsConstants.js +0 -3
  431. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsPage.js +0 -80
  432. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsReducer.js +0 -39
  433. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js +0 -60
  434. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTables.scss +0 -0
  435. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js +0 -94
  436. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsActions.js +0 -23
  437. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsConstants.js +0 -3
  438. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsReducer.js +0 -30
  439. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js +0 -35
  440. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailInfo.test.js +0 -16
  441. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.fixtures.js +0 -25
  442. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js +0 -27
  443. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsActions.test.js +0 -41
  444. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsReducer.test.js +0 -33
  445. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailInfo.test.js.snap +0 -83
  446. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetails.test.js.snap +0 -190
  447. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsActions.test.js.snap +0 -58
  448. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsReducer.test.js.snap +0 -50
  449. data/webpack/scenes/AnsibleCollections/Details/index.js +0 -17
  450. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js +0 -23
  451. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollections.fixtures.js +0 -52
  452. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsActions.test.js +0 -48
  453. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsReducer.test.js +0 -46
  454. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +0 -25
  455. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionPage.test.js.snap +0 -73
  456. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionsTable.test.js.snap +0 -81
  457. data/webpack/scenes/AnsibleCollections/index.js +0 -17
  458. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +0 -123
@@ -3,16 +3,31 @@ module Katello
3
3
  module ContentViewVersion
4
4
  class Export
5
5
  include ImportExportCommon
6
- attr_reader :smart_proxy, :content_view_version, :destination_server, :from_content_view_version
6
+ SYNCABLE = "syncable".freeze
7
+ IMPORTABLE = "importable".freeze
8
+ FORMATS = [SYNCABLE, IMPORTABLE].freeze
9
+
10
+ attr_reader :smart_proxy, :content_view_version, :destination_server, :from_content_view_version, :repository, :base_path
11
+ def self.create(options)
12
+ if options.delete(:format) == SYNCABLE
13
+ SyncableFormatExport.new(options)
14
+ else
15
+ self.new(options)
16
+ end
17
+ end
7
18
 
8
19
  def initialize(smart_proxy:,
9
20
  content_view_version: nil,
10
21
  destination_server: nil,
11
- from_content_view_version: nil)
22
+ from_content_view_version: nil,
23
+ repository: nil,
24
+ base_path: nil)
12
25
  @smart_proxy = smart_proxy
13
26
  @content_view_version = content_view_version
14
27
  @destination_server = destination_server
15
28
  @from_content_view_version = from_content_view_version
29
+ @repository = repository
30
+ @base_path = base_path
16
31
  end
17
32
 
18
33
  def repository_hrefs
@@ -37,21 +52,27 @@ module Katello
37
52
  end
38
53
 
39
54
  def generate_exporter_path
40
- export_path = "#{content_view_version.content_view}/#{content_view_version.version}/#{destination_server}/#{date_dir}".gsub(/\s/, '_')
41
- "#{content_view_version.organization.label}/#{export_path}"
55
+ return base_path if base_path
56
+ export_path = "#{content_view_version.content_view}/#{content_view_version.version}/"
57
+ export_path += "#{destination_server}/" unless destination_server.blank?
58
+ export_path += "#{date_dir}".gsub(/\s/, '_')
59
+ @base_path = "#{Setting['pulpcore_export_destination']}/#{content_view_version.organization.label}/#{export_path}"
42
60
  end
43
61
 
44
62
  def date_dir
45
63
  DateTime.now.to_s.gsub(/\W/, '-')
46
64
  end
47
65
 
48
- def create_exporter(export_base_dir: Setting['pulpcore_export_destination'])
49
- api.exporter_api.create(name: generate_id(content_view_version),
50
- path: "#{export_base_dir}/#{generate_exporter_path}",
51
- repositories: repository_hrefs)
66
+ def create_exporter
67
+ exporter_api = api.exporter_api
68
+ options = { name: generate_id(content_view_version), path: generate_exporter_path }
69
+ options[:repositories] = repository_hrefs
70
+
71
+ exporter_api.create(options)
52
72
  end
53
73
 
54
- def create_export(exporter_href, chunk_size: nil)
74
+ def create_export(exporter_data, chunk_size: nil)
75
+ exporter_href = exporter_data[:pulp_href]
55
76
  options = { versions: version_hrefs }
56
77
  options[:chunk_size] = "#{chunk_size}GB" if chunk_size
57
78
  if from_content_view_version
@@ -77,14 +98,16 @@ module Katello
77
98
  options[:start_versions] = start_versions
78
99
  options[:full] = 'false'
79
100
  end
80
- [api.export_api.create(exporter_href, options)]
101
+ export_api = api.export_api
102
+ [export_api.create(exporter_href, options)]
81
103
  end
82
104
 
83
105
  def fetch_export(exporter_href)
84
106
  api.export_api.list(exporter_href).results.first
85
107
  end
86
108
 
87
- def destroy_exporter(exporter_href)
109
+ def destroy_exporter(exporter_data)
110
+ exporter_href = exporter_data[:pulp_href]
88
111
  export_data = fetch_export(exporter_href)
89
112
  api.exporter_api.partial_update(exporter_href, :last_export => nil)
90
113
  api.export_api.delete(export_data.pulp_href) unless export_data.blank?
@@ -162,6 +185,10 @@ module Katello
162
185
  generated_for: generated_for).send(select_method)
163
186
  end
164
187
 
188
+ def format
189
+ is_a?(SyncableFormatExport) ? SYNCABLE : IMPORTABLE
190
+ end
191
+
165
192
  def self.find_library_export_view(create_by_default: false,
166
193
  destination_server:,
167
194
  organization:)
@@ -16,10 +16,12 @@ module Katello
16
16
 
17
17
  def generate!
18
18
  ret = { organization: organization.name,
19
+ base_path: Setting['pulpcore_export_destination'],
19
20
  repositories: {},
20
21
  content_view: content_view.slice(:name, :label, :description, :generated_for),
21
22
  content_view_version: content_view_version.slice(:major, :minor, :description),
22
- incremental: from_content_view_version.present?
23
+ incremental: from_content_view_version.present?,
24
+ format: export_service.format
23
25
  }
24
26
 
25
27
  unless from_content_view_version.blank?
@@ -0,0 +1,34 @@
1
+ module Katello
2
+ module Pulp3
3
+ module ContentViewVersion
4
+ class SyncableFormatExport < Export
5
+ def create_exporter
6
+ api.yum_exporter_api.create(name: "#{generate_id(content_view_version)}-#{repository.id}",
7
+ path: generate_repository_exporter_path,
8
+ method: :hardlink)
9
+ end
10
+
11
+ def create_export(exporter_data, _options = {})
12
+ [api.yum_export_api.create(exporter_data[:pulp_href], publication: repository.publication_href)]
13
+ end
14
+
15
+ def fetch_export(exporter_href)
16
+ api.yum_export_api.list(exporter_href).results.first
17
+ end
18
+
19
+ def destroy_exporter(exporter_data)
20
+ exporter_href = exporter_data[:pulp_href]
21
+ export_data = fetch_export(exporter_href)
22
+ api.yum_export_api.delete(export_data.pulp_href)
23
+ api.yum_exporter_api.delete(exporter_href)
24
+ end
25
+
26
+ def generate_repository_exporter_path
27
+ _org, _content, content_path = repository.library_instance_or_self.relative_path.split("/", 3)
28
+ content_path = content_path.sub(%r|^/|, '')
29
+ "#{generate_exporter_path}/#{content_path}".gsub(/\s/, '_')
30
+ end
31
+ end
32
+ end
33
+ end
34
+ end
@@ -9,6 +9,7 @@ module Katello
9
9
  end
10
10
 
11
11
  def self.content_api_create(opts = {})
12
+ opts.delete(:relative_path) if opts.key?(:relative_path)
12
13
  self.content_api.create(opts)
13
14
  end
14
15
 
@@ -24,7 +25,8 @@ module Katello
24
25
  end
25
26
 
26
27
  def self.generate_model_row(unit)
27
- {
28
+ unit = unit.try(:with_indifferent_access)
29
+ return {
28
30
  pulp_id: unit[unit_identifier],
29
31
  checksum: unit[:sha256],
30
32
  filename: unit[:relative_path],
@@ -146,6 +146,8 @@ module Katello
146
146
  elsif repository.generic?
147
147
  duplicate_sha_path_content_list = content_backend_service.content_api(repository.repository_type, unit_type_id).list(
148
148
  filter_label => checksum)
149
+ elsif unit_type_id == 'deb'
150
+ duplicate_sha_path_content_list = content_backend_service.content_api.list(filter_label => checksum)
149
151
  else
150
152
  duplicate_sha_path_content_list = content_backend_service.content_api.list(
151
153
  filter_label => checksum,
@@ -4,6 +4,7 @@ module Katello
4
4
  module Pulp3
5
5
  class Repository
6
6
  class Apt < ::Katello::Pulp3::Repository
7
+ UNIT_LIMIT = 10_000
7
8
  SIGNING_SERVICE_NAME = 'katello_deb_sign'.freeze
8
9
 
9
10
  def remote_options
@@ -66,8 +67,191 @@ module Katello
66
67
  "/pulp/deb/#{repo.relative_path}/".sub('//', '/')
67
68
  end
68
69
 
69
- def copy_content_for_source(source_repository, _options = {})
70
- copy_units_by_href(source_repository.debs.pluck(:pulp_id))
70
+ def multi_copy_units(repo_id_map, dependency_solving)
71
+ tasks = []
72
+
73
+ if repo_id_map.values.pluck(:content_unit_hrefs).flatten.any?
74
+ data = PulpDebClient::Copy.new
75
+ data.dependency_solving = dependency_solving
76
+ data.config = []
77
+ repo_id_map.each do |source_repo_ids, dest_repo_id_map|
78
+ dest_repo = ::Katello::Repository.find(dest_repo_id_map[:dest_repo])
79
+ dest_repo_href = ::Katello::Pulp3::Repository::Apt.new(dest_repo, SmartProxy.pulp_primary).repository_reference.repository_href
80
+ content_unit_hrefs = dest_repo_id_map[:content_unit_hrefs]
81
+ # Not needed during incremental update due to dest_base_version
82
+ source_repo_ids.each do |source_repo_id|
83
+ source_repo_version = ::Katello::Repository.find(source_repo_id).version_href
84
+ config = { source_repo_version: source_repo_version, dest_repo: dest_repo_href, content: content_unit_hrefs }
85
+ config[:dest_base_version] = dest_repo_id_map[:base_version] if dest_repo_id_map[:base_version]
86
+ data.config << config
87
+ end
88
+ end
89
+ tasks << copy_content_chunked(data)
90
+ else
91
+ tasks << remove_all_content_from_mapping(repo_id_map)
92
+ end
93
+ tasks.flatten
94
+ end
95
+
96
+ def copy_api_data_dup(data)
97
+ data_dup = PulpDebClient::Copy.new
98
+ data_dup.dependency_solving = data.dependency_solving
99
+ data_dup.config = []
100
+ data.config.each do |repo_config|
101
+ config_hash = {
102
+ source_repo_version: repo_config[:source_repo_version],
103
+ dest_repo: repo_config[:dest_repo],
104
+ content: []
105
+ }
106
+ config_hash[:dest_base_version] = repo_config[:dest_base_version] if repo_config[:dest_base_version]
107
+ data_dup.config << config_hash
108
+ end
109
+ data_dup
110
+ end
111
+
112
+ def copy_content_chunked(data)
113
+ tasks = []
114
+ # Don't chunk if there aren't enough content units
115
+ if data.config.sum { |repo_config| repo_config[:content].size } <= UNIT_LIMIT
116
+ return api.copy_api.copy_content(data)
117
+ end
118
+
119
+ unit_copy_counter = 0
120
+ i = 0
121
+ leftover_units = data.config.first[:content].deep_dup
122
+
123
+ # Copy data and clear its content fields
124
+ data_dup = copy_api_data_dup(data)
125
+
126
+ while i < data_dup.config.size
127
+ # Copy all units within repo or only some?
128
+ if leftover_units.length < UNIT_LIMIT - unit_copy_counter
129
+ copy_amount = leftover_units.length
130
+ else
131
+ copy_amount = UNIT_LIMIT - unit_copy_counter
132
+ end
133
+
134
+ data_dup.config[i][:content] = leftover_units.pop(copy_amount)
135
+ unit_copy_counter += copy_amount
136
+ if unit_copy_counter != 0
137
+ tasks << api.copy_api.copy_content(data_dup)
138
+ unit_copy_counter = 0
139
+ end
140
+
141
+ if leftover_units.empty?
142
+ # Nothing more to copy -- clear current config's content
143
+ data_dup.config[i][:content] = []
144
+ i += 1
145
+ # Fetch unit list for next data config
146
+ leftover_units = data.config[i][:content].deep_dup unless i == data_dup.config.size
147
+ end
148
+ end
149
+
150
+ tasks
151
+ end
152
+
153
+ def remove_all_content_from_mapping(repo_id_map)
154
+ tasks = []
155
+ repo_id_map.each do |_source_repo_ids, dest_repo_id_map|
156
+ dest_repo = ::Katello::Repository.find(dest_repo_id_map[:dest_repo])
157
+ dest_repo_href = ::Katello::Pulp3::Repository::Apt.new(dest_repo, SmartProxy.pulp_primary).repository_reference.repository_href
158
+ tasks << remove_all_content_from_repo(dest_repo_href)
159
+ end
160
+ tasks
161
+ end
162
+
163
+ def remove_all_content_from_repo(repo_href)
164
+ data = PulpDebClient::RepositoryAddRemoveContent.new(
165
+ remove_content_units: ['*'])
166
+ api.repositories_api.modify(repo_href, data)
167
+ end
168
+
169
+ def remove_all_content
170
+ data = PulpDebClient::RepositoryAddRemoveContent.new(
171
+ remove_content_units: ['*'])
172
+ api.repositories_api.modify(repository_reference.repository_href, data)
173
+ end
174
+
175
+ def add_filter_content(source_repo_ids, filters, filter_list_map)
176
+ filters.each do |filter|
177
+ if filter.inclusion
178
+ source_repo_ids.each do |repo_id|
179
+ filter_list_map[:whitelist_ids] += filter.content_unit_pulp_ids(::Katello::Repository.find(repo_id))
180
+ end
181
+ else
182
+ source_repo_ids.each do |repo_id|
183
+ filter_list_map[:blacklist_ids] += filter.content_unit_pulp_ids(::Katello::Repository.find(repo_id))
184
+ end
185
+ end
186
+ end
187
+ filter_list_map
188
+ end
189
+
190
+ def add_debs(source_repo_ids, filters, filter_list_map)
191
+ if (filter_list_map[:whitelist_ids].empty? && filters.select { |filter| filter.inclusion }.empty?)
192
+ filter_list_map[:whitelist_ids] += source_repo_ids.collect do |source_repo_id|
193
+ source_repo = ::Katello::Repository.find(source_repo_id)
194
+ source_repo.debs.pluck(:pulp_id).sort
195
+ end
196
+ end
197
+ filter_list_map
198
+ end
199
+
200
+ def copy_content_from_mapping(repo_id_map, options = {})
201
+ repo_id_map.each do |source_repo_ids, dest_repo_map|
202
+ filters = ContentViewDebFilter.where(:id => options[:filter_ids])
203
+
204
+ filter_list_map = { whitelist_ids: [], blacklist_ids: [] }
205
+ filter_list_map = add_filter_content(source_repo_ids, filters, filter_list_map)
206
+ filter_list_map = add_debs(source_repo_ids, filters, filter_list_map)
207
+
208
+ whitelist_ids = filter_list_map[:whitelist_ids].flatten&.uniq
209
+ blacklist_ids = filter_list_map[:blacklist_ids].flatten&.uniq
210
+ content_unit_hrefs = whitelist_ids - blacklist_ids
211
+
212
+ dest_repo_map[:content_unit_hrefs] = content_unit_hrefs.uniq.sort
213
+ end
214
+
215
+ dependency_solving = options[:solve_dependencies] || false
216
+
217
+ multi_copy_units(repo_id_map, dependency_solving)
218
+ end
219
+
220
+ def copy_units(content_unit_hrefs, remove_all)
221
+ remove_all = true if remove_all.nil?
222
+ tasks = []
223
+
224
+ if content_unit_hrefs.sort!.any?
225
+ first_slice = remove_all
226
+ content_unit_hrefs.each_slice(UNIT_LIMIT) do |slice|
227
+ tasks << add_content(slice, first_slice)
228
+ first_slice = false
229
+ end
230
+ else
231
+ tasks << remove_all_content
232
+ end
233
+ tasks
234
+ end
235
+
236
+ def copy_content_for_source(source_repository, options = {})
237
+ # copy_units_by_href(source_repository.debs.pluck(:pulp_id))
238
+ filters = ContentViewDebFilter.where(:id => options[:filter_ids])
239
+
240
+ whitelist_ids = []
241
+ blacklist_ids = []
242
+ filters.each do |filter|
243
+ if filter.inclusion
244
+ whitelist_ids += filter.content_unit_pulp_ids(source_repository)
245
+ else
246
+ blacklist_ids += filter.content_unit_pulp_ids(source_repository)
247
+ end
248
+ end
249
+
250
+ whitelist_ids = source_repository.debs.pluck(:pulp_id).sort if (whitelist_ids.empty? && filters.select { |filter| filter.inclusion }.empty?)
251
+
252
+ content_unit_hrefs = whitelist_ids - blacklist_ids
253
+
254
+ copy_units(content_unit_hrefs.uniq, options[:remove_all])
71
255
  end
72
256
 
73
257
  def regenerate_applicability
@@ -77,7 +77,7 @@ module Katello
77
77
  if remote_options[:url].blank?
78
78
  if href
79
79
  repo.update(remote_href: nil)
80
- delete_remote href
80
+ delete_remote(href: href)
81
81
  end
82
82
  else
83
83
  if href
@@ -97,8 +97,9 @@ module Katello
97
97
  end
98
98
  end
99
99
 
100
- def delete_remote(href = repo.remote_href)
101
- ignore_404_exception { remote_options[:url]&.start_with?('uln') ? api.remotes_uln_api.delete(href) : api.remotes_api.delete(href) } if href
100
+ def delete_remote(options = {})
101
+ options[:href] ||= repo.remote_href
102
+ ignore_404_exception { remote_options[:url]&.start_with?('uln') ? api.remotes_uln_api.delete(options[:href]) : api.remotes_api.delete(options[:href]) } if options[:href]
102
103
  end
103
104
 
104
105
  def self.instance_for_type(repo, smart_proxy)
@@ -43,7 +43,7 @@ module Katello
43
43
  response = api.remotes_api.create(remote_file_data)
44
44
  end
45
45
  #delete is async, but if its not properly deleted, orphan cleanup will take care of it later
46
- delete_remote(response.pulp_href)
46
+ delete_remote(href: response.pulp_href)
47
47
  end
48
48
  end
49
49
 
@@ -83,7 +83,7 @@ module Katello
83
83
 
84
84
  remotes.each do |remote|
85
85
  if !repo_names.include?(remote.name) && !acs_remotes.include?(remote.pulp_href)
86
- tasks << api.delete_remote(remote.pulp_href)
86
+ tasks << api.delete_remote(href: remote.pulp_href)
87
87
  end
88
88
  end
89
89
  end
@@ -1,11 +1,11 @@
1
1
  <% if @smart_proxy.pulp_mirror? -%>
2
2
  <div ng-controller="CapsuleContentController">
3
- <%= render :file => 'smart_proxies/show' %>
3
+ <%= render :template => 'smart_proxies/show' %>
4
4
  </div>
5
5
  <% elsif @smart_proxy.pulp_primary? -%>
6
6
  <div ng-controller="PulpPrimaryController">
7
- <%= render :file => 'smart_proxies/show' %>
7
+ <%= render :template => 'smart_proxies/show' %>
8
8
  </div>
9
9
  <% else -%>
10
- <%= render :file => 'smart_proxies/show' %>
10
+ <%= render :template => 'smart_proxies/show' %>
11
11
  <% end -%>
@@ -1,8 +1,23 @@
1
- object @resource
2
-
3
1
  extends 'katello/api/v2/common/identifier'
4
2
 
5
- attributes :name, :base_url, :subpaths, :content_type, :alternate_content_source_type, :smart_proxies, :upstream_username, :last_refreshed
3
+ if @object.respond_to?(:alternate_content_source_type)
4
+ if @object.custom?
5
+ attributes :name, :alternate_content_source_type, :content_type, :base_url, :subpaths, :upstream_username, :smart_proxies, :verify_ssl
6
+ child :ssl_ca_cert => :ssl_ca_cert do |_object|
7
+ attributes :id, :name
8
+ end
9
+
10
+ child :ssl_client_cert => :ssl_client_cert do |_object|
11
+ attributes :id, :name
12
+ end
13
+
14
+ child :ssl_client_key => :ssl_client_key do |_object|
15
+ attributes :id, :name
16
+ end
17
+ elsif @object.simplified?
18
+ attributes :name, :alternate_content_source_type, :content_type, :products, :smart_proxies
19
+ end
20
+ end
6
21
 
7
22
  child :latest_dynflow_refresh_task => :last_refresh do |_object|
8
23
  attributes :id, :username, :started_at, :ended_at, :state, :result, :progress
@@ -1,3 +1,23 @@
1
1
  object @resource
2
2
 
3
3
  extends "katello/api/v2/alternate_content_sources/base"
4
+
5
+ if @resource.respond_to?(:simplified?)
6
+ if @resource.simplified?
7
+ node :products do |acs|
8
+ acs.products.map do |product|
9
+ { id: product.id, organization_id: product.organization.id, name: product.name, label: product.label }
10
+ end
11
+ end
12
+ else
13
+ node :upstream_password_exists do |_acs|
14
+ @resource.upstream_password.present?
15
+ end
16
+ end
17
+ end
18
+
19
+ node :smart_proxies do |acs|
20
+ acs.smart_proxies.map do |smart_proxy|
21
+ { id: smart_proxy.id, name: smart_proxy.name, url: smart_proxy.url, download_policy: smart_proxy.download_policy }
22
+ end
23
+ end
@@ -0,0 +1,10 @@
1
+ object false
2
+
3
+ extends "katello/api/v2/common/metadata"
4
+
5
+ child @collection[:results] => :results do
6
+ extends 'katello/api/v2/ansible_collections/base'
7
+ node :comparison do |result|
8
+ result.comparison
9
+ end
10
+ end
@@ -47,6 +47,11 @@ node :rules do |filter|
47
47
  partial('katello/api/v2/content_view_filter_rules/show', :object => rule)
48
48
  end
49
49
 
50
+ elsif filter.respond_to?(:deb_rules)
51
+ filter.deb_rules.map do |rule|
52
+ partial('katello/api/v2/content_view_filter_rules/show', :object => rule)
53
+ end
54
+
50
55
  else
51
56
  []
52
57
  end
@@ -0,0 +1,10 @@
1
+ object false
2
+
3
+ extends "katello/api/v2/common/metadata"
4
+
5
+ child @collection[:results] => :results do
6
+ extends 'katello/api/v2/module_streams/base'
7
+ node :comparison do |result|
8
+ result.comparison
9
+ end
10
+ end
@@ -37,6 +37,10 @@ child @resource.repositories => :repositories do
37
37
  attributes :minor => :releasever
38
38
  end
39
39
 
40
+ node :archRestricted do |pc|
41
+ pc.repositories&.first&.arch
42
+ end
43
+
40
44
  node :osRestricted do |pc|
41
45
  pc.repositories&.first&.os_versions&.first
42
46
  end
@@ -2,4 +2,4 @@
2
2
  <%= render :partial => 'layouts/application_content' %>
3
3
  <% end %>
4
4
 
5
- <%= render :file => 'bastion/layouts/assets' %>
5
+ <%= render :template => 'bastion/layouts/assets' %>
@@ -13,4 +13,4 @@
13
13
  <%= react_component('katello') %>
14
14
  </div>
15
15
  <% end %>
16
- <%= render file: "layouts/base" %>
16
+ <%= render template: "layouts/base" %>
@@ -12,13 +12,10 @@
12
12
  'data-url' => "/katello/api/v2/organizations/#{@taxonomy.id}/download_debug_certificate"
13
13
  end %>
14
14
 
15
- <% if @can_toggle_sca %>
16
- <%= field(f, _('Simple Content Access'),
17
- :help_inline => _('Toggling Simple Content Access will refresh your manifest.')) do
18
- tag1 = hidden_field_tag 'simple_content_access', '0'
19
- tag2 = check_box_tag 'simple_content_access', '1', @taxonomy.simple_content_access?
20
- tag1 + tag2
21
- end %>
22
- <% end %>
15
+ <%= field(f, _('Simple Content Access')) do
16
+ tag1 = hidden_field_tag 'simple_content_access', '0'
17
+ tag2 = check_box_tag 'simple_content_access', '1', @taxonomy.simple_content_access?(cached: false)
18
+ tag1 + tag2
19
+ end %>
23
20
 
24
21
  <% end %>
@@ -1,3 +1,3 @@
1
1
  <% if taxonomy.is_a?(Organization) %>
2
- <td><%= checked_icon taxonomy.simple_content_access? %></td>
2
+ <td><%= checked_icon taxonomy.simple_content_access?(cached: false) %></td>
3
3
  <% end %>
@@ -1,5 +1,10 @@
1
1
  <% if @taxonomy.is_a?(Organization) %>
2
2
 
3
3
  <%= text_f f, :label, :class => 'input-xlarge' %>
4
+ <%= field(f, _('Simple Content Access')) do
5
+ tag1 = hidden_field_tag 'simple_content_access', '0'
6
+ tag2 = check_box_tag 'simple_content_access', '1', true
7
+ tag1 + tag2
8
+ end %>
4
9
 
5
10
  <% end %>
data/ca/redhat-uep.pem CHANGED
@@ -39,12 +39,12 @@ tcci9LFHGvijIy4VUDQK8HmGjIxJPrIIe1nB5BkiGyjwn00D5q+BwYVst1C68Rwx
39
39
  iRZpyzOZmeineJvhrJZ4Tvs=
40
40
  -----END CERTIFICATE-----
41
41
  -----BEGIN CERTIFICATE-----
42
- MIIHZTCCBU2gAwIBAgIJAJGKz8qFAAAAMA0GCSqGSIb3DQEBBQUAMIGwMQswCQYD
42
+ MIIGejCCBGKgAwIBAgIJAJGKz8qFAAAIMA0GCSqGSIb3DQEBDAUAMIGwMQswCQYD
43
43
  VQQGEwJVUzEXMBUGA1UECAwOTm9ydGggQ2Fyb2xpbmExEDAOBgNVBAcMB1JhbGVp
44
44
  Z2gxFjAUBgNVBAoMDVJlZCBIYXQsIEluYy4xGDAWBgNVBAsMD1JlZCBIYXQgTmV0
45
45
  d29yazEeMBwGA1UEAwwVRW50aXRsZW1lbnQgTWFzdGVyIENBMSQwIgYJKoZIhvcN
46
- AQkBFhVjYS1zdXBwb3J0QHJlZGhhdC5jb20wHhcNMTAwMzE4MTEyNDU0WhcNMzAw
47
- MzEzMTEyNDU0WjCBsTELMAkGA1UEBhMCVVMxFzAVBgNVBAgMDk5vcnRoIENhcm9s
46
+ AQkBFhVjYS1zdXBwb3J0QHJlZGhhdC5jb20wHhcNMTgwOTEyMTgxMzIxWhcNMzAw
47
+ MzE1MTgxMzIxWjCBsTELMAkGA1UEBhMCVVMxFzAVBgNVBAgMDk5vcnRoIENhcm9s
48
48
  aW5hMRYwFAYDVQQKDA1SZWQgSGF0LCBJbmMuMRgwFgYDVQQLDA9SZWQgSGF0IE5l
49
49
  dHdvcmsxMTAvBgNVBAMMKFJlZCBIYXQgRW50aXRsZW1lbnQgT3BlcmF0aW9ucyBB
50
50
  dXRob3JpdHkxJDAiBgkqhkiG9w0BCQEWFWNhLXN1cHBvcnRAcmVkaGF0LmNvbTCC
@@ -59,26 +59,21 @@ tUeKQUFwIXqSjuOoZDu80H6NQb+4dnRSjWlx/m7HPk75m0zErshpB2HSKUnrs4wR
59
59
  i7GsWDDcqBus7eLMwUZPvDNVcLQu/2Y4DUHNbJbn7+DwEqi5D0heC+dyY8iS45gp
60
60
  I/yhVvq/GfKL+dqjaNaE4CorJJA5qJ9f383Ol/aub+aJeBahCBNuVa2daA9Bo3BA
61
61
  dnL7KkILPFyCcEhQITnu70Qn9sQlwYcRoYF2LWAm9DtLrBT0Y0w7wQHh8vNhwEQ7
62
- k5G87WpwzcC8y6ePR0vFAgMBAAGjggF9MIIBeTAdBgNVHQ4EFgQUxEl4VkWdHixh
63
- YMNmS1gFNy8DInswgeUGA1UdIwSB3TCB2oAUiEumRcRG7I/Wz6b2Gs8mPJDMfxeh
64
- gbakgbMwgbAxCzAJBgNVBAYTAlVTMRcwFQYDVQQIDA5Ob3J0aCBDYXJvbGluYTEQ
65
- MA4GA1UEBwwHUmFsZWlnaDEWMBQGA1UECgwNUmVkIEhhdCwgSW5jLjEYMBYGA1UE
66
- CwwPUmVkIEhhdCBOZXR3b3JrMR4wHAYDVQQDDBVFbnRpdGxlbWVudCBNYXN0ZXIg
67
- Q0ExJDAiBgkqhkiG9w0BCQEWFWNhLXN1cHBvcnRAcmVkaGF0LmNvbYIJAOb+Qigl
68
- yeZeMAwGA1UdEwQFMAMBAf8wCwYDVR0PBAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIB
69
- BjAgBgNVHREEGTAXgRVjYS1zdXBwb3J0QHJlZGhhdC5jb20wIAYDVR0SBBkwF4EV
70
- Y2Etc3VwcG9ydEByZWRoYXQuY29tMA0GCSqGSIb3DQEBBQUAA4ICAQBbTSz+UIXP
71
- AVIT0ZVL1flCHR113aj2j3UBZkaoDkSxtEfa1nqysmN0llpqh4NVBL3anEFYxokL
72
- hQ2PB8mmuD5EuWaNxnXTc4Sr5dsOcjkFiU197lybaJK7w4OzQ2Qg/X/t4+R78cfM
73
- ZK/qHpjuyT3NyHHvCug/WzkvU09pRr2aVHI+fn68u18TRzPJNKvegR4YeA3vsyQW
74
- BgEc8sU7KrAvikFJ3mCTpAk+6SRgbGFLyZE637Qrzy2DDBw0V020dkTkC6YnEsZg
75
- HwZWVmLtCgLlnimx6SRft+6zrXVHWZxod1GT/af7vizpmhrXt/Nu5Se7dpOhPayo
76
- NwYCFNmfZeL4W/foSKNfaizZcc+tiNABRtT+tplfniv/yjr7sBAsFPhJqQB8CfsQ
77
- 8BVvKkHtixygyo+EO+NEotZGw3cn+/7soo9B1bWXk3PFSwEr+KwINACFGv2zcGLI
78
- oeP4iK6DHZImWEV4tgMrQyXatEyPh2axPWU3SjY/fr1Ub5gEt+WpCtyYIN4ObBaN
79
- eL3NPfTj79/VFZ22PhUInmGY/VK/ymvl/dkWyWi8zD8Aq55ofZ33FvQ46dcLp1pV
80
- KWApIVqO27uhL6YxXDFi6n7RXACEIVz6JqDh5fGmOH1F+vfumZKzW78LlVD2QY15
81
- rmCh0i9+AUCiUsNyYdJbSZDPiFPBwlwUoQ==
62
+ k5G87WpwzcC8y6ePR0vFAgMBAAGjgZMwgZAwHQYDVR0OBBYEFMRJeFZFnR4sYWDD
63
+ ZktYBTcvAyJ7MB8GA1UdIwQYMBaAFIhLpkXERuyP1s+m9hrPJjyQzH8XMAwGA1Ud
64
+ EwQFMAMBAf8wCwYDVR0PBAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIBBjAgBgNVHREE
65
+ GTAXgRVjYS1zdXBwb3J0QHJlZGhhdC5jb20wDQYJKoZIhvcNAQEMBQADggIBAGKk
66
+ q5Ab0AC7SOCYq9up5z0twbe+gI72cm854+VhcxafnLP2/4nH6nQauKLKEFLI8+fV
67
+ RAwYxm1f5nuEiaTvjPE0umYdgMlpEJQeGdW/+/DotDaOon1G6bSMEKFvaKcBHKqa
68
+ kBxQ29trwMG2WN8qZ7/H3XzBvLZ+JrYr01vDSV0P4tcBFOytbMZeJr4xmfxiqWxp
69
+ VUM9eGf6z+ngXyth8lohxGd9MMXwsaPdvM+wptp3AQpq5wFPWyfJqCd6uBxu09k1
70
+ ns3Y/sya2GHqDK4bUW6gCHO13gkYviTCIBLAlX7PDeK5nYVcq8HvTLU9+H9BFGix
71
+ YGDdHphz7i5qO/gLLLcfKhENP6jtbe8i6nwqeDzj+DMy38iMWNYFVWn1OrBaQMtf
72
+ wlVfyRJij9SfyiUAVFld1RoPAN/haf1VmF/0dGrOigibYijqnHvDJffMUND/sbk8
73
+ df6O6VYjvLLlwry4W4dHiLLA7NAHGtkUv2g1+oH1lQIfRG+PvZhWz4pGT1AlzfwD
74
+ aXUfX2X+Bo9tYr9BGy5Li1pLGLvfw+an7cBAbBaw8+HhAHt+Vm4F03KX/bHlge0a
75
+ fMYK6FoA/xQSaZ6IPm4HfPSMvhboguVG+/AZQN4/UxjDleoEz8b0CWYafcJRRZch
76
+ BdxBjTy7JLf3j0HCbenZQF83wwtrSmiTOTK1tLsm
82
77
  -----END CERTIFICATE-----
83
78
  -----BEGIN CERTIFICATE-----
84
79
  MIIHZDCCBUygAwIBAgIJAOb+QiglyeZeMA0GCSqGSIb3DQEBBQUAMIGwMQswCQYD
@@ -2,8 +2,6 @@
2
2
  :rest_client_timeout: 30
3
3
  :gpg_strict_validation: false
4
4
 
5
- :puppet_repo_root: '/etc/puppet/environments/'
6
-
7
5
  :redhat_repository_url: https://cdn.redhat.com
8
6
 
9
7
  :consumer_cert_rpm: 'katello-ca-consumer-latest.noarch.rpm'