Skip to content

Commit

Permalink
Fix container remote upstream name option
Browse files Browse the repository at this point in the history
The example code to create a container remote contains an argument that is incorrect:

> Error: No such option: --upstream_name (Possible options: --upstream-name, --username)

This commit modifies the underscore in the argument to a hyphen. That resolves the "No such option" error.
  • Loading branch information
stejoo authored Jul 2, 2024
1 parent e52fa5d commit f80229f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion staging_docs/user/tutorials/01-sync-and-host.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ including `quay`, `google container registry`, or even another instance of Pulp.
Container plugin supports both Docker and OCI media types.

```bash
pulp container remote create --name foo --url "https://registry-1.docker.io" --upstream_name=pulp/test-fixture-1
pulp container remote create --name foo --url "https://registry-1.docker.io" --upstream-name=pulp/test-fixture-1
```

!!! note
Expand Down

0 comments on commit f80229f

Please sign in to comment.