Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

runcible / lib / runcible / models @ c0df0f4c

# Date Author Comment
c0df0f4c 12/12/2018 02:39 PM Evgeni Golov

Refs #25576 - allow passing "subdir" to PuppetInstallDistributor

The relevant pulp-puppet feature was added in 2.13 [1].
It allows pulp-puppet to better clean up the distributor.

[1] https://pulp.plan.io/issues/2108

93296fd6 08/28/2018 03:19 PM Markus Bucher

Fixes #24105 - Add deb_importer options

for verifying repository signatures

a14f68e1 08/27/2018 12:12 PM Thomas McKay

refs #24051 - add docker tags whitelist

a5858c9b 03/06/2018 09:19 PM Partha Aji

Fixes #22802 - Add 'skip' option to yum

Yum importer offers a "skip" option to skip certain unit types while
syncing (like rpms, drpms etc )
This commit is to make that available to katello and other projects

d0cb4289 01/30/2018 01:16 AM Stephen Benjamin

refs #22446 - use relative_url for iso repo path

f2126017 11/10/2017 02:13 PM Matthias Dellweg

refs #10478 - add option publish_default_release

7467739a 11/10/2017 02:13 PM Matthias Dellweg

refs #10478 - add deb repository type

f87181a1 03/23/2017 03:16 PM Partha Aji

fixes #18993 - Set depth for ostree distributor

Prior to this commit one could only set depth for ostree importer.
This one enables one to set it for the distributor also.
This will enable pulp to selectively publish what its synced from
upstream feed.

524638e4 02/01/2017 12:34 PM Partha Aji

Fixes #18076 - Can set OSTree repo depth

Enables one to set the importer depth value for the ostree repo.
look at http://projects.theforeman.org/issues/18076 for more info.

5126dd02 05/12/2016 07:59 PM David Davis

Fixes #15016 - Upgrade rubocop (#177)

5fcde76f 02/12/2016 02:52 PM John Mitsch

Fixes #13681 - Remove unnecessary param in puppet_distributor

547786b5 02/03/2016 03:38 PM Chris Duryee

Fixes #13543 - allow for repo group publishing

This commit adds the "publish" API for pulp repo group publishing, and allows
for the export distributor on repo groups.

Additionally, it adds support for the 'relative_url' parameter on the export
distributor config.

24966ce8 02/01/2016 04:40 PM David Davis

Fixes #13452 - Support download_policy for importer

cf78605e 01/29/2016 11:42 AM Brad Buckingham

fixes #13460 - docker v2 - disable v1 support & introduce docker_manifest unit type

This commit makes 2 changes:
1. update the docker importer to support the 'enable_v1' flag
2. introduce the docker_manifest unit which is being added with
docker v2

0f45b85f 09/23/2015 09:40 PM Eric Helms

Fixes #11927: Move common importer attributes to base class

63540c7c 09/23/2015 07:37 PM Eric Helms

Fixes #11030: Add Python support.

33865fb6 09/22/2015 06:42 PM Partha Aji

Fixes #11925 - Adding SSL attributes for Ostree

To connect with the CDN

c1664a68 07/06/2015 07:50 PM David Davis

Fixes #11027 - Remove copyright notices

c06a94b6 05/05/2015 03:25 PM Partha Aji

Fixes #10036 - CRUD bindings for rpm ostree repositories

c050ae44 01/16/2015 06:51 PM Partha Aji

Refs #7617 - Fixed a docker distributor issue

The docker distributor previously didnot properly communicate
protected/redirect_url/repo-registry-id attributes to pulp.
This commit aims to fix that

926b9789 10/15/2014 02:50 PM Justin Sherrill

fixing runcible errors caused by rubocop changes

when we turned on rubocop, we converted unused method arguments
to start with underscores. This broke any method that relied on
binding.send(:local_variables). This disables that cop and fixes
all of those instances....

3e3ad61c 10/09/2014 07:18 PM Partha Aji

Ref #7880: Rubocop fixes update

db77e602 09/24/2014 06:09 PM Partha Aji

Fixes #7617 - CRUD docker repo bindings

Added docker repo bindings to runcible
Includes CRUD for docker repo related operations along the same lines of puppet
and yum repo types.

5198c758 09/17/2013 03:04 PM Mike McCune

fixes from the PR review

f9325ee8 09/16/2013 04:56 PM Mike McCune

adding puppet_install_distributor and running the model tests

76b69aa4 08/15/2013 04:46 PM David Davis

Merge pull request #102 from daviddavis/temp/20130815121537

Fixing some distributor stuff

2a138f8d 08/15/2013 04:21 PM David Davis

Removing duplicate distributor method

f3888e16 08/15/2013 04:15 PM David Davis

Puppet: Adding in missing method to distributor

f6afeb0f 08/12/2013 08:11 PM Justin Sherrill

fixing some documentation

2a2b9875 08/12/2013 01:36 PM Justin Sherrill

initial node support

30006cc1 08/08/2013 08:37 PM David Davis

Puppet: Adding distributor and importer tests

3871ddc9 08/07/2013 01:48 PM David Davis

Puppet: Using new 1.0 architecture for puppet classes

a3c4e968 08/07/2013 01:35 PM David Davis

Merge branch 'master' into puppet

Conflicts:
lib/runcible/models/yum_importer.rb

87126322 07/31/2013 08:24 PM Justin Sherrill

adding requirement documentation for pulp-katello-plugin related items

661ca339 07/30/2013 06:31 PM Justin Sherrill

Changing runcible to support multiple pulp servers.

Now, classes need to be instantiated. For example:

Instead of Runcible::Resources::Repository.find()

you would need to use:

Runcible::Resources::Repository.new(config).find()

You can all instantiate Runcible::Instance to get access to all modules:...