katello 3.7.0 → 3.7.1

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 (113) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/common/index.js +1 -0
  3. data/app/assets/javascripts/katello/sync_management/index.js +1 -0
  4. data/app/controllers/katello/api/v2/host_packages_controller.rb +1 -5
  5. data/app/controllers/katello/remote_execution_controller.rb +6 -6
  6. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +37 -9
  7. data/app/lib/actions/katello/host/hypervisors_update.rb +82 -22
  8. data/app/lib/actions/pulp/consumer/abstract_content_action.rb +12 -0
  9. data/app/lib/actions/pulp/consumer/content_install.rb +1 -1
  10. data/app/lib/actions/pulp/consumer/content_uninstall.rb +1 -1
  11. data/app/lib/actions/pulp/consumer/content_update.rb +1 -1
  12. data/app/models/katello/concerns/subscription_facet_host_extensions.rb +1 -1
  13. data/app/models/katello/content_view.rb +12 -4
  14. data/app/models/katello/glue/candlepin/pool.rb +11 -11
  15. data/app/models/katello/host/content_facet.rb +2 -1
  16. data/app/models/katello/rpm.rb +14 -6
  17. data/app/models/katello/subscription_status.rb +1 -1
  18. data/app/services/katello/candlepin/consumer.rb +8 -0
  19. data/app/views/overrides/activation_keys/_host_environment_select.html.erb +2 -3
  20. data/config/routes.rb +1 -0
  21. data/db/migrate/20180612163403_add_foreign_key_to_hypervisor_id.rb +3 -0
  22. data/db/seeds.d/75-job_templates.rb +5 -2
  23. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-repository-sets-modal.controller.js +4 -3
  24. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-subscriptions-modal.controller.js +4 -1
  25. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +1 -1
  26. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html +1 -1
  27. data/engines/bastion_katello/app/assets/stylesheets/bastion_katello/bastion_katello.scss +5 -0
  28. data/lib/katello/tasks/clean_backend_objects.rake +12 -3
  29. data/lib/katello/version.rb +1 -1
  30. data/package.json +10 -7
  31. data/webpack/__mocks__/foremanReact/redux.js +3 -0
  32. data/webpack/__mocks__/foremanReact/redux/actions/toasts.js +2 -0
  33. data/webpack/components/Search/Search.test.js +3 -1
  34. data/webpack/components/SelectOrg/SelectOrg.scss +3 -0
  35. data/webpack/components/SelectOrg/SelectOrgAction.js +41 -0
  36. data/webpack/components/SelectOrg/SelectOrgReducer.js +33 -0
  37. data/webpack/components/SelectOrg/SetOrganization.js +116 -0
  38. data/webpack/components/WithOrganization/withOrganization.js +28 -0
  39. data/webpack/containers/Application/config.js +9 -2
  40. data/webpack/containers/Application/index.js +4 -2
  41. data/webpack/global_test_setup.js +6 -0
  42. data/webpack/helpers/caret.js +6 -0
  43. data/webpack/move_to_foreman/components/common/{emptyState → EmptyState}/index.js +16 -3
  44. data/webpack/move_to_foreman/components/common/table/components/Table.js +1 -1
  45. data/webpack/move_to_foreman/components/common/table/components/__snapshots__/CollapseSubscriptionGroupButton.test.js.snap +2 -2
  46. data/webpack/move_to_foreman/components/common/table/components/__snapshots__/TableSelectionCell.test.js.snap +1 -1
  47. data/webpack/move_to_foreman/components/common/table/components/__snapshots__/TableSelectionHeaderCell.test.js.snap +1 -1
  48. data/webpack/move_to_pf/LoadingState/LoadingState.js +27 -14
  49. data/webpack/move_to_pf/LoadingState/LoadingState.test.js +8 -4
  50. data/webpack/move_to_pf/Select/Select.js +40 -0
  51. data/webpack/move_to_pf/react-bootstrap-select/index.js +12 -1
  52. data/webpack/redux/actions/RedHatRepositories/enabled.js +0 -1
  53. data/webpack/redux/actions/RedHatRepositories/helpers.js +5 -5
  54. data/webpack/redux/consts.js +6 -0
  55. data/webpack/redux/reducers/index.js +2 -0
  56. data/webpack/scenes/Products/ProductActions.js +24 -0
  57. data/webpack/scenes/Products/ProductConstants.js +3 -0
  58. data/webpack/scenes/Products/__tests__/ProductActions.test.js +40 -0
  59. data/webpack/scenes/Products/__tests__/products.fixtures.js +90 -0
  60. data/webpack/scenes/RedHatRepositories/components/EnabledRepository.js +14 -23
  61. data/webpack/scenes/RedHatRepositories/components/EnabledRepositoryContent.js +34 -0
  62. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepository.js +1 -1
  63. data/webpack/scenes/RedHatRepositories/components/SearchBar.js +1 -0
  64. data/webpack/scenes/RedHatRepositories/components/__tests__/EnabledRepository.test.js +36 -0
  65. data/webpack/scenes/RedHatRepositories/components/__tests__/EnabledRepositoryContent.test.js +27 -0
  66. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/EnabledRepository.test.js.snap +25 -0
  67. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/EnabledRepositoryContent.test.js.snap +47 -0
  68. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RecommendedRepositorySetsToggler.test.js.snap +3 -1
  69. data/webpack/scenes/RedHatRepositories/index.js +7 -3
  70. data/webpack/scenes/RedHatRepositories/index.scss +1 -0
  71. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailActions.js +1 -1
  72. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailEnabledProducts.js +54 -0
  73. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailProduct.js +29 -0
  74. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailReducer.js +29 -0
  75. data/webpack/scenes/Subscriptions/Details/SubscriptionDetails.js +67 -22
  76. data/webpack/scenes/Subscriptions/Details/SubscriptionDetails.scss +9 -0
  77. data/webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailEnabledProducts.test.js +18 -0
  78. data/webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProduct.test.js +13 -0
  79. data/webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetails.test.js +6 -0
  80. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailEnabledProducts.test.js.snap +45 -0
  81. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailProduct.test.js.snap +67 -0
  82. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap +497 -410
  83. data/webpack/scenes/Subscriptions/Details/__tests__/subscriptionDetails.fixtures.js +4 -0
  84. data/webpack/scenes/Subscriptions/Details/index.js +3 -1
  85. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +78 -34
  86. data/webpack/scenes/Subscriptions/Manifest/ManifestHistoryReducer.js +8 -0
  87. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +3 -0
  88. data/webpack/scenes/Subscriptions/Manifest/__tests__/__snapshots__/ManageManifestModal.test.js.snap +34 -7
  89. data/webpack/scenes/Subscriptions/Manifest/index.js +1 -0
  90. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -0
  91. data/webpack/scenes/Subscriptions/SubscriptionHelpers.js +3 -0
  92. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +6 -2
  93. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +31 -36
  94. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +2 -7
  95. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsPage.test.js +1 -1
  96. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +3 -6
  97. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +2 -0
  98. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +14 -2
  99. data/webpack/scenes/Subscriptions/__tests__/subscriptions.fixtures.js +4 -3
  100. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/EntitlementsInlineEditFormatter.js +8 -5
  101. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js +29 -19
  102. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableHelpers.js +9 -2
  103. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js +2 -2
  104. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/EntitlementsInlineEditFormatter.test.js +110 -0
  105. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js +15 -3
  106. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/EntitlementsInlineEditFormatter.test.js.snap +228 -0
  107. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +54 -21
  108. data/webpack/scenes/Subscriptions/index.js +1 -0
  109. data/webpack/scenes/Tasks/helpers.js +52 -0
  110. data/webpack/services/api/index.js +17 -1
  111. data/webpack/test_setup.js +2 -0
  112. metadata +31 -4
  113. data/config/katello.yaml +0 -89
@@ -3,8 +3,10 @@
3
3
  import 'babel-polyfill';
4
4
  import { configure } from 'enzyme';
5
5
  import Adapter from 'enzyme-adapter-react-16';
6
+ import * as Services from './services/api';
6
7
 
7
8
  configure({ adapter: new Adapter() });
8
9
 
9
10
  // Mocking translation function
10
11
  global.__ = text => text; // eslint-disable-line
12
+ Services.orgId = () => 1;
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.7.0
4
+ version: 3.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - N/A
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-07-24 00:00:00.000000000 Z
11
+ date: 2018-10-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -1340,7 +1340,6 @@ files:
1340
1340
  - config/initializers/pagelets.rb
1341
1341
  - config/initializers/rabl_init.rb
1342
1342
  - config/initializers/runcible.rb
1343
- - config/katello.yaml
1344
1343
  - config/katello.yaml.example
1345
1344
  - config/locales/README
1346
1345
  - config/locales/bn.yml
@@ -2258,6 +2257,7 @@ files:
2258
2257
  - webpack/__mocks__/foremanReact/common/helpers.js
2259
2258
  - webpack/__mocks__/foremanReact/components/BreadcrumbBar.js
2260
2259
  - webpack/__mocks__/foremanReact/components/common/table.js
2260
+ - webpack/__mocks__/foremanReact/redux.js
2261
2261
  - webpack/__mocks__/foremanReact/redux/actions/toasts.js
2262
2262
  - webpack/__mocks__/react-bootstrap-tooltip-button.js
2263
2263
  - webpack/components/MultiSelect/index.js
@@ -2268,10 +2268,17 @@ files:
2268
2268
  - webpack/components/Search/__snapshots__/Search.test.js.snap
2269
2269
  - webpack/components/Search/helpers.js
2270
2270
  - webpack/components/Search/index.js
2271
+ - webpack/components/SelectOrg/SelectOrg.scss
2272
+ - webpack/components/SelectOrg/SelectOrgAction.js
2273
+ - webpack/components/SelectOrg/SelectOrgReducer.js
2274
+ - webpack/components/SelectOrg/SetOrganization.js
2275
+ - webpack/components/WithOrganization/withOrganization.js
2271
2276
  - webpack/containers/Application/Routes.js
2272
2277
  - webpack/containers/Application/config.js
2273
2278
  - webpack/containers/Application/index.js
2274
2279
  - webpack/containers/Application/overrides.scss
2280
+ - webpack/global_test_setup.js
2281
+ - webpack/helpers/caret.js
2275
2282
  - webpack/index.js
2276
2283
  - webpack/mockRequest.js
2277
2284
  - webpack/move_to_foreman/Settings/SettingsActions.js
@@ -2288,12 +2295,12 @@ files:
2288
2295
  - webpack/move_to_foreman/components/common/Dialog/__tests__/Dialog.test.js
2289
2296
  - webpack/move_to_foreman/components/common/Dialog/__tests__/__snapshots__/Dialog.test.js.snap
2290
2297
  - webpack/move_to_foreman/components/common/Dialog/index.js
2298
+ - webpack/move_to_foreman/components/common/EmptyState/index.js
2291
2299
  - webpack/move_to_foreman/components/common/ModalProgressBar/ModalProgressBar.js
2292
2300
  - webpack/move_to_foreman/components/common/ModalProgressBar/ModalProgressBar.scss
2293
2301
  - webpack/move_to_foreman/components/common/ModalProgressBar/__tests__/ModalProgressBar.test.js
2294
2302
  - webpack/move_to_foreman/components/common/ModalProgressBar/__tests__/__snapshots__/ModalProgressBar.test.js.snap
2295
2303
  - webpack/move_to_foreman/components/common/ModalProgressBar/index.js
2296
- - webpack/move_to_foreman/components/common/emptyState/index.js
2297
2304
  - webpack/move_to_foreman/components/common/table/components/CollapseSubscriptionGroupButton.js
2298
2305
  - webpack/move_to_foreman/components/common/table/components/CollapseSubscriptionGroupButton.test.js
2299
2306
  - webpack/move_to_foreman/components/common/table/components/Table.js
@@ -2328,6 +2335,7 @@ files:
2328
2335
  - webpack/move_to_pf/LoadingState/LoadingState.test.js
2329
2336
  - webpack/move_to_pf/LoadingState/__snapshots__/LoadingState.test.js.snap
2330
2337
  - webpack/move_to_pf/LoadingState/index.js
2338
+ - webpack/move_to_pf/Select/Select.js
2331
2339
  - webpack/move_to_pf/TypeAhead/TypeAhead.js
2332
2340
  - webpack/move_to_pf/TypeAhead/TypeAhead.scss
2333
2341
  - webpack/move_to_pf/TypeAhead/TypeAheadInput.js
@@ -2359,8 +2367,13 @@ files:
2359
2367
  - webpack/scenes/Organizations/__tests__/OrganizationActions.test.js
2360
2368
  - webpack/scenes/Organizations/__tests__/OrganizationReducer.test.js
2361
2369
  - webpack/scenes/Organizations/__tests__/organizations.fixtures.js
2370
+ - webpack/scenes/Products/ProductActions.js
2371
+ - webpack/scenes/Products/ProductConstants.js
2372
+ - webpack/scenes/Products/__tests__/ProductActions.test.js
2373
+ - webpack/scenes/Products/__tests__/products.fixtures.js
2362
2374
  - webpack/scenes/RedHatRepositories/components/EnabledRepository.js
2363
2375
  - webpack/scenes/RedHatRepositories/components/EnabledRepository.stories.js
2376
+ - webpack/scenes/RedHatRepositories/components/EnabledRepositoryContent.js
2364
2377
  - webpack/scenes/RedHatRepositories/components/RecommendedRepositorySetsToggler.js
2365
2378
  - webpack/scenes/RedHatRepositories/components/RecommendedRepositorySetsToggler.scss
2366
2379
  - webpack/scenes/RedHatRepositories/components/RepositorySet.js
@@ -2369,8 +2382,12 @@ files:
2369
2382
  - webpack/scenes/RedHatRepositories/components/RepositoryTypeIcon.js
2370
2383
  - webpack/scenes/RedHatRepositories/components/Search.js
2371
2384
  - webpack/scenes/RedHatRepositories/components/SearchBar.js
2385
+ - webpack/scenes/RedHatRepositories/components/__tests__/EnabledRepository.test.js
2386
+ - webpack/scenes/RedHatRepositories/components/__tests__/EnabledRepositoryContent.test.js
2372
2387
  - webpack/scenes/RedHatRepositories/components/__tests__/RecommendedRepositorySetsToggler.test.js
2373
2388
  - webpack/scenes/RedHatRepositories/components/__tests__/RepositoryTypeIcon.test.js
2389
+ - webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/EnabledRepository.test.js.snap
2390
+ - webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/EnabledRepositoryContent.test.js.snap
2374
2391
  - webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RecommendedRepositorySetsToggler.test.js.snap
2375
2392
  - webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RepositoryTypeIcon.test.js.snap
2376
2393
  - webpack/scenes/RedHatRepositories/helpers.js
@@ -2380,18 +2397,25 @@ files:
2380
2397
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailActions.js
2381
2398
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailAssociations.js
2382
2399
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailConstants.js
2400
+ - webpack/scenes/Subscriptions/Details/SubscriptionDetailEnabledProducts.js
2383
2401
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailInfo.js
2402
+ - webpack/scenes/Subscriptions/Details/SubscriptionDetailProduct.js
2384
2403
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailProducts.js
2385
2404
  - webpack/scenes/Subscriptions/Details/SubscriptionDetailReducer.js
2386
2405
  - webpack/scenes/Subscriptions/Details/SubscriptionDetails.js
2406
+ - webpack/scenes/Subscriptions/Details/SubscriptionDetails.scss
2387
2407
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailActions.test.js
2388
2408
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailAssociations.test.js
2409
+ - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailEnabledProducts.test.js
2389
2410
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailInfo.test.js
2411
+ - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProduct.test.js
2390
2412
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProducts.test.js
2391
2413
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailReducer.test.js
2392
2414
  - webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetails.test.js
2393
2415
  - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailAssociations.test.js.snap
2416
+ - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailEnabledProducts.test.js.snap
2394
2417
  - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailInfo.test.js.snap
2418
+ - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailProduct.test.js.snap
2395
2419
  - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailProducts.test.js.snap
2396
2420
  - webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap
2397
2421
  - webpack/scenes/Subscriptions/Details/__tests__/subscriptionDetails.fixtures.js
@@ -2437,7 +2461,9 @@ files:
2437
2461
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js
2438
2462
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableHelpers.js
2439
2463
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js
2464
+ - webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/EntitlementsInlineEditFormatter.test.js
2440
2465
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js
2466
+ - webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/EntitlementsInlineEditFormatter.test.js.snap
2441
2467
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap
2442
2468
  - webpack/scenes/Subscriptions/components/SubscriptionsTable/index.js
2443
2469
  - webpack/scenes/Subscriptions/index.js
@@ -2445,6 +2471,7 @@ files:
2445
2471
  - webpack/scenes/Tasks/TaskConstants.js
2446
2472
  - webpack/scenes/Tasks/__tests__/TaskActions.test.js
2447
2473
  - webpack/scenes/Tasks/__tests__/task.fixtures.js
2474
+ - webpack/scenes/Tasks/helpers.js
2448
2475
  - webpack/services/api/index.js
2449
2476
  - webpack/services/api/setupMocks.js
2450
2477
  - webpack/services/api/testHelpers.js
data/config/katello.yaml DELETED
@@ -1,89 +0,0 @@
1
- :katello:
2
- #if this block is not define, all types are enabled
3
- #types are defined in lib/katello/repository_types/*.rb
4
- :content_types:
5
- :yum: true
6
- :file: true
7
- :deb: true
8
- :puppet: true
9
- :docker: true
10
- :ostree: true
11
-
12
- :use_cp: true # set to true/false if you want to override default
13
- :use_pulp: true # set to true/false if you want to override default
14
-
15
- :rest_client_timeout: 30
16
- :gpg_strict_validation: false
17
-
18
- :puppet_repo_root: '/etc/puppet/environments/'
19
-
20
- :post_sync_url: "http://localhost:3000/katello/api/v2/repositories/sync_complete?token=katello"
21
-
22
- :redhat_repository_url: https://cdn.redhat.com
23
-
24
- :consumer_cert_rpm: 'katello-ca-consumer-latest.noarch.rpm'
25
- :consumer_cert_sh: 'katello-rhsm-consumer'
26
-
27
- # Setup your candlepin environment here
28
- :candlepin:
29
- # refers to the url of the candlepin
30
- # example https://localhost:8443/candlepin
31
- :url: https://192.168.42.116:31329/candlepin
32
-
33
- # Specify your oauth key and secret used to authenticate between Katello and Candlepin
34
- :oauth_key: katello
35
- :oauth_secret: katello
36
-
37
- # refers to the candlepin-ca.crt location that is needed
38
- # to connect to candlepin over https.This is not necessary
39
- # if the candlepin server is running on the same machine as katello
40
- # but required if the server is on a different machine.
41
- # In the different machine case the katello host needs to have a
42
- # copy of /etc/candlepin/certs/candlepin-ca.crt copied from
43
- # the candlepin host and the location of the copied file needs to be
44
- # specified here..
45
- :ca_cert_file:
46
- # :bulk_load_size: 1000
47
- # Setup your pulp environment here
48
- :pulp:
49
- # refers to the url of the pulp
50
- # example https://localhost/pulp/api
51
- :url: https://192.168.42.116:30133/pulp/api/v2/
52
-
53
- :sync_threads: 4
54
- :bulk_load_size: 100
55
- # refers to the apache certificate
56
- # (typically /etc/pki/tls/certs/localhost.crt) location that is needed
57
- # to connect to pulp over https.
58
- :ca_cert_file:
59
- :default_login: admin
60
- :sync_KBlimit:
61
- :upload_chunk_size: 1048575 # upload size in bytes to pulp. see SSLRenegBufferSize in apache
62
- :skip_checksum_validation: false
63
-
64
- :qpid:
65
- :url: amqp:ssl:katello-devel.example.com:5671
66
- :subscriptions_queue_address: katello_event_queue
67
-
68
- :cdn_proxy:
69
- # :host: localhost
70
- # :port: 3128
71
- # :user: login
72
- # :password: password
73
-
74
- # Logging configuration can be changed by uncommenting the loggers
75
- # section and the logger configuration desired.
76
- #
77
- # :loggers:
78
- # :glue:
79
- # :enabled: true
80
- # :pulp_rest:
81
- # :enabled: true
82
- # :cp_rest:
83
- # :enabled: true
84
- # :cp_proxy:
85
- # :enabled: true
86
- # :action:
87
- # :enabled: true
88
- # :manifest_import_logger:
89
- # :enabled: true