From 5cfd314dff0fd21110ec72fc9655d69c8d840b4c Mon Sep 17 00:00:00 2001 From: Stefan Joosten Date: Tue, 2 Jul 2024 13:44:12 +0200 Subject: [PATCH] [noissue] Fix container remote upstream name arg 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. --- staging_docs/user/tutorials/01-sync-and-host.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staging_docs/user/tutorials/01-sync-and-host.md b/staging_docs/user/tutorials/01-sync-and-host.md index 9339349c9..97643befc 100644 --- a/staging_docs/user/tutorials/01-sync-and-host.md +++ b/staging_docs/user/tutorials/01-sync-and-host.md @@ -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