pulp-maven plugin for the Pulp Project
Project description
This is the pulp_maven Plugin for Pulp Project 3.0+. This plugin let’s users use Pulp as a pull-through cache for Maven repositories.
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-maven from source
sudo -u pulp -i
source ~/pulpvenv/bin/activate
git clone https://github.com/pulp/pulp_maven.git
cd pulp_maven
pip install -e .
Install pulp-maven From PyPI
sudo -u pulp -i
source ~/pulpvenv/bin/activate
pip install pulp-maven
Make and Run Migrations
export DJANGO_SETTINGS_MODULE=pulpcore.app.settings
django-admin makemigrations maven
django-admin migrate maven
Run Services
django-admin runserver 24817
gunicorn pulpcore.content:server --bind 'localhost:24816' --worker-class 'aiohttp.GunicornWebWorker' -w 2
sudo systemctl restart pulpcore-resource-manager
sudo systemctl restart pulpcore-worker@1
sudo systemctl restart pulpcore-worker@2
Create a new Maven remote bar
$ http POST http://localhost:24817/pulp/api/v3/remotes/maven/maven/ name='bar' url='https://repo1.maven.org/maven2/'
{
"pulp_href": "/pulp/api/v3/remotes/maven/maven/2668a20c-3908-4767-b134-531e5145d7b7/",
...
}
$ export REMOTE_HREF=$(http :24817/pulp/api/v3/remotes/maven/maven/ | jq -r '.results[] | select(.name == "bar") | .pulp_href')
Create a Maven Distribution for the Maven Remote
$ http POST http://localhost:24817/pulp/api/v3/distributions/maven/maven/ name='baz' base_path='my/local/maven' remote=$REMOTE_HREF
{
"pulp_href": "/pulp/api/v3/distributions/67baa17e-0a9f-4302-b04a-dbf324d139de/",
...
}
Add Pulp as mirror for Maven
<settings>
<mirrors>
<mirror>
<id>pulp-maven-central</id>
<name>Local Maven Central mirror </name>
<url>http://localhost:24816/pulp/content/my/local/maven</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
</settings>
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
Built Distribution
File details
Details for the file pulp-maven-0.8.1.tar.gz
.
File metadata
- Download URL: pulp-maven-0.8.1.tar.gz
- Upload date:
- Size: 27.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2b6aa5ad326b0e9676894d297d44bfdac64350a0e2ce6ee48e91058733b4b5e |
|
MD5 | dc4823a015e5ddec8324ec522b9954f5 |
|
BLAKE2b-256 | 32956f9a51470e0d1f04b3cba33bc6a2617876c71391393273ed309005b2fd38 |
File details
Details for the file pulp_maven-0.8.1-py3-none-any.whl
.
File metadata
- Download URL: pulp_maven-0.8.1-py3-none-any.whl
- Upload date:
- Size: 30.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93b061cbca4623f1945b1e8f85c4252b6386a32f147c2be903e19c6b6e11d2fc |
|
MD5 | 6d28fd9751b4f12897167b33272d3d9d |
|
BLAKE2b-256 | e267bfc045cddc03f641d2fbba939e027bf48637b03979f83127c21a318df2a0 |