You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-12Lines changed: 11 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,8 +12,8 @@ a primary/secondary setup.
12
12
13
13
## Why Pulp Manager?
14
14
15
-
Pulp Manager provides centralized orchestration of a clustger of Pulp3
16
-
instances and is particularly usfeful for organizations with
15
+
Pulp Manager provides centralized orchestration of a cluster of Pulp3
16
+
instances. It is particularly useful for organizations with
17
17
multi-tiered or multi-zone deployments who need coordinated syncs
18
18
between primary and secondary servers.
19
19
@@ -227,7 +227,7 @@ Defines authentication allowed against the API
227
227
-`jwt_algorithm`: Algorithm to use to encrypt JWT tokens
228
228
-`jwt_token_lifetime_mins`: Number of minutes JWT is valid for
229
229
-`admin_group`: Directory group user must be a member of to carry out
230
-
priveldged actions agains the API
230
+
privileged actions against the API
231
231
-`require_jwt_auth`: Boolean whether to require JWT authentication for
232
232
protected API endpoints. Set to false for local development environments
233
233
where authentication is not needed. Defaults to true
@@ -304,7 +304,7 @@ pulp_servers:
304
304
repo_groups:
305
305
external_repos:
306
306
schedule: "0 0 * * *"
307
-
max_conccurent_sync: 2
307
+
max_concurrent_sync: 2
308
308
max_runtime: "6h"
309
309
snapshot_support:
310
310
max_concurrent_snapshots: 2
@@ -314,7 +314,7 @@ pulp_servers:
314
314
repo_groups:
315
315
external_repos:
316
316
schedule: "0 6 * * *"
317
-
max_conccurent_sync: 2
317
+
max_concurrent_sync: 2
318
318
max_runtime: "6h"
319
319
pulp_master: pulp3mast1.example.com
320
320
@@ -359,10 +359,10 @@ credentials and repo groups to sync.
359
359
when the job is run
360
360
-`max_runtime`: How long the job should run for before it is
361
361
cancelled
362
-
-`pulp_primary` (Optional): If the pulp server is synching the
362
+
-`pulp_master` (Optional): If the pulp server is synching the
363
363
repos from a pulp primary, specify the name of the pulp
364
364
server. This needs to exist in the pulp_servers config so that the
365
-
list of repos on the server can be retreived via the API
365
+
list of repos on the server can be retrieved via the API
366
366
-`snapshot_support`: specifies if snapshots can be run against the
367
367
pulp server, value is a dict
368
368
-`max_concurrent_snapshots`: number of repos that can snapshotted
@@ -499,8 +499,7 @@ execute the following command in your terminal:
499
499
```shell
500
500
make run-pulp-manager
501
501
```
502
-
This command orchestrates the setup by utilizing dockercompose-local.yml to start all necessary services. It also triggers the
503
-
building of Docker images if they are not found or if there are updates to the images since the last build.
502
+
This command starts the Pulp Manager API, worker, and RQ dashboard services along with their dependencies (MariaDB and Redis). It uses the demo/docker-compose.yml configuration.
504
503
505
504
For local authentication, the Pulp manager utilizes the password
506
505
specified for pulp3 in local_config.ini and the username defined in
@@ -540,13 +539,13 @@ need to stop and restart the entire environment every time you modify
540
539
a file.
541
540
542
541
543
-
5.**Starting Pulp 3 Environment**
542
+
5.**Starting Pulp 3 Environment**
544
543
545
-
For development that requires Pulp 3, you can start the Pulp 3 environment locally using Docker Compose. Run the following command in your terminal:
544
+
For development that requires Pulp 3, you can start the Pulp 3 environment. Run the following command in your terminal:
546
545
```
547
546
make run-pulp3
548
547
```
549
-
This command makes use of dockercompose-pulp3.yml to bring up the Pulp 3 services. It's particularly useful for testing integrations with Pulp 3 or when working on features that depend on Pulp 3 services.
548
+
This command starts the Pulp 3 primary and secondary servers using the demo/docker-compose.yml configuration. It's particularly useful for testing integrations with Pulp 3 or when working on features that depend on Pulp 3 services.
0 commit comments