Skip to content

Commit 3a02a9b

Browse files
authored
Merge pull request #230 from mikedep333/default-ports
Change Pulp 3 Default Ports
2 parents 283c8c9 + cc59a45 commit 3a02a9b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.travis/script.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ flake8 --config flake8.cfg || exit 1
77

88
# Run migrations.
99
export DJANGO_SETTINGS_MODULE=pulpcore.app.settings
10-
export PULP_CONTENT_HOST=localhost:8080
10+
export PULP_CONTENT_HOST=localhost:24816
1111
django-admin makemigrations python
1212
django-admin migrate --noinput
1313

@@ -16,8 +16,8 @@ django-admin migrate --noinput
1616

1717
# Run functional tests.
1818
django-admin reset-admin-password --password admin
19-
django-admin runserver >> ~/django_runserver.log 2>&1 &
20-
gunicorn pulpcore.content:server --bind 'localhost:8080' --worker-class 'aiohttp.GunicornWebWorker' -w 2 >> ~/content_app.log 2>&1 &
19+
django-admin runserver 24817 >> ~/django_runserver.log 2>&1 &
20+
gunicorn pulpcore.content:server --bind 'localhost:24816' --worker-class 'aiohttp.GunicornWebWorker' -w 2 >> ~/content_app.log 2>&1 &
2121
rq worker -n 'resource-manager@%h' -w 'pulpcore.tasking.worker.PulpWorker' >> ~/resource_manager.log 2>&1 &
2222
rq worker -n 'reserved-resource-worker-1@%h' -w 'pulpcore.tasking.worker.PulpWorker' >> ~/reserved_worker-1.log 2>&1 &
2323
sleep 8

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Run Services
5050
.. code-block:: bash
5151
5252
pulp-manager runserver
53-
gunicorn pulpcore.content:server --bind 'localhost:8080' --worker-class 'aiohttp.GunicornWebWorker' -w 2
53+
gunicorn pulpcore.content:server --bind 'localhost:24816' --worker-class 'aiohttp.GunicornWebWorker' -w 2
5454
sudo systemctl restart pulp-resource-manager
5555
sudo systemctl restart pulp-worker@1
5656
sudo systemctl restart pulp-worker@2

docs/workflows/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ accordingly. If you prefer to specify the username and password with each reques
2222
To make these workflows copy/pastable, we make use of environment variables. The first variable to
2323
set is the hostname and port::
2424

25-
$ export BASE_ADDR=http://<hostname>:8000
25+
$ export BASE_ADDR=http://<hostname>:24817
2626

2727
This documentation makes use of the `jq library <https://stedolan.github.io/jq/>`_
2828
to parse the json received from requests, in order to get the unique urls generated

docs/workflows/publish-host.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ $ cat pip.conf
9191
.. code::
9292
9393
[global]
94-
index-url = http://localhost:8080/pulp/content/foo/simple/
94+
index-url = http://localhost:24816/pulp/content/foo/simple/
9595
9696
The above configuration informs ``pip`` to install from ``pulp``::
9797

0 commit comments

Comments
 (0)