Skip to main content

File plugin for the Pulp Project

Project description

This is the pulp_file Plugin for Pulp Project 3.0+. This plugin replaces the ISO support in the pulp_rpm plugin for Pulp 2. This plugin uses the ChangeSet API to add and remove content from a repository.

All REST API examples bellow use httpie to perform the requests. The httpie commands below assume that the user executing the commands has a .netrc file in the home directory. The .netrc should have the following configuration:

machine localhost
login admin
password admin

If you configured the admin user with a different password, adjust the configuration accordingly. If you prefer to specify the username and password with each request, please see httpie documentation on how to do that.

This documentation makes use of the jq library to parse the json received from requests, in order to get the unique urls generated when objects are created. To follow this documentation as-is please install the jq library with:

$ sudo dnf install jq

Install pulpcore

Follow the installation instructions provided with pulpcore.

Users should install from either PyPI or source.

Install pulp-file from source

sudo -u pulp -i
source ~/pulpvenv/bin/activate
git clone https://github.com/pulp/pulp_file.git
cd pulp_file
pip install -e .

Install pulp-file From PyPI

sudo -u pulp -i
source ~/pulpvenv/bin/activate
pip install pulp-file

Make and Run Migrations

pulp-manager makemigrations pulp_file
pulp-manager migrate pulp_file

Run Services

pulp-manager runserver
sudo systemctl restart pulp_resource_manager
sudo systemctl restart pulp_worker@1
sudo systemctl restart pulp_worker@2

Create a repository foo

$ http POST http://localhost:8000/pulp/api/v3/repositories/ name=foo

{
    "_href": "/pulp/api/v3/repositories/1/",
    ...
}

$ export REPO_HREF=$(http :8000/pulp/api/v3/repositories/ | jq -r '.results[] | select(.name == "foo") | ._href')

Create a new remote bar

$ http POST http://localhost:8000/pulp/api/v3/remotes/file/ name='bar' url='https://repos.fedorapeople.org/pulp/pulp/demo_repos/test_file_repo/' manifest=PULP_MANIFEST

{
    "_href": "/pulp/api/v3/remotes/file/1/",
    ...
}

$ export REMOTE_HREF=$(http :8000/pulp/api/v3/remotes/file/ | jq -r '.results[] | select(.name == "bar") | ._href')

Sync repository foo using remote bar

$ http POST ':8000'$REMOTE_HREF'sync/' repository=$REPO_HREF mirror=True

Look at the new Repository Version created

$ http GET ':8000'$REPO_HREF'versions/1/'

{
    "_added_href": "/pulp/api/v3/repositories/1/versions/1/added_content/",
    "_content_href": "/pulp/api/v3/repositories/1/versions/1/content/",
    "_href": "/pulp/api/v3/repositories/1/versions/1/",
    "_removed_href": "/pulp/api/v3/repositories/1/versions/1/removed_content/",
    "content_summary": {
        "file": 3
    },
    "created": "2018-02-23T20:29:54.499055Z",
    "number": 1
}

Upload foo.tar.gz to Pulp

Create an Artifact by uploading the file to Pulp.

$ http --form POST http://localhost:8000/pulp/api/v3/artifacts/ file@./foo.tar.gz

{
    "_href": "/pulp/api/v3/artifacts/1/",
    ...
}

Create file content from an Artifact

Create a content unit and point it to your artifact

$ http POST http://localhost:8000/pulp/api/v3/content/file/files/ relative_path=foo.tar.gz artifact="/pulp/api/v3/artifacts/1/"

{
    "_href": "/pulp/api/v3/content/file/files/1/",
    "artifact": "/pulp/api/v3/artifacts/1/",
    "relative_path": "foo.tar.gz",
    "type": "file"
}

$ export CONTENT_HREF=$(http :8000/pulp/api/v3/content/file/files/ | jq -r '.results[] | select(.relative_path == "foo.tar.gz") | ._href')

Add content to repository foo

$ http POST ':8000'$REPO_HREF'versions/' add_content_units:="[\"$CONTENT_HREF\"]"

Create a file Publisher

$ http POST http://localhost:8000/pulp/api/v3/publishers/file/ name=bar manifest=my_manifest.csv

{
    "_href": "/pulp/api/v3/publishers/file/1/",
    ...
}

$ export PUBLISHER_HREF=$(http :8000/pulp/api/v3/publishers/file/ | jq -r '.results[] | select(.name == "bar") | ._href')

Use the bar Publisher to create a Publication

$ http POST ':8000'$PUBLISHER_HREF'publish/' repository=$REPO_HREF

[
    {
        "_href": "/pulp/api/v3/tasks/fd4cbecd-6c6a-4197-9cbe-4e45b0516309/",
        "task_id": "fd4cbecd-6c6a-4197-9cbe-4e45b0516309"
    }
]

$ export PUBLICATION_HREF=$(http :8000/pulp/api/v3/publications/ | jq -r --arg PUBLISHER_HREF "$PUBLISHER_HREF" '.results[] | select(.publisher==$PUBLISHER_HREF) | ._href')

Create a Distribution for the Publication

$ http POST http://localhost:8000/pulp/api/v3/distributions/ name='baz' base_path='foo' publication=$PUBLICATION_HREF

{
    "_href": "/pulp/api/v3/distributions/1/",
   ...
}

Download test.iso from Pulp

$ http GET http://localhost:8000/pulp/content/foo/test.iso

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pulp-file-0.0.1b5.tar.gz (22.5 kB view details)

Uploaded Source

Built Distribution

pulp_file-0.0.1b5-py3-none-any.whl (22.0 kB view details)

Uploaded Python 3

File details

Details for the file pulp-file-0.0.1b5.tar.gz.

File metadata

  • Download URL: pulp-file-0.0.1b5.tar.gz
  • Upload date:
  • Size: 22.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.5.6

File hashes

Hashes for pulp-file-0.0.1b5.tar.gz
Algorithm Hash digest
SHA256 5e2d3818b221a080314868e19527759f1b3d8040c81286a257f2effee75da46a
MD5 81069a58fe862304e051f0f67b9f7df9
BLAKE2b-256 73bca11a731ef0fd3f5f0f57d7a18348cfded29701bdd4f1d2b309edb767640c

See more details on using hashes here.

File details

Details for the file pulp_file-0.0.1b5-py3-none-any.whl.

File metadata

  • Download URL: pulp_file-0.0.1b5-py3-none-any.whl
  • Upload date:
  • Size: 22.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.5.6

File hashes

Hashes for pulp_file-0.0.1b5-py3-none-any.whl
Algorithm Hash digest
SHA256 d7e4699bc8e54c70fa7aaf8331f9ce6508af3a2ac0938fa8b7ac339df28316be
MD5 b915aae79bd6e481b9cf8df9a29a919a
BLAKE2b-256 dcd066db2882b59dd2148c08b87e887e10b045af41fe0bb10f826b9d28dbf6a8

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page