From 9ddcbd6de0fd3db6d454fabf64b66eb464e55d53 Mon Sep 17 00:00:00 2001 From: Pasha Sviderski Date: Wed, 12 Nov 2025 23:18:41 +1000 Subject: [PATCH] docs: render CLI reference --- website/docs/9-cli-reference/uc_image_push.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/website/docs/9-cli-reference/uc_image_push.md b/website/docs/9-cli-reference/uc_image_push.md index 171608c8..6a94f5f8 100644 --- a/website/docs/9-cli-reference/uc_image_push.md +++ b/website/docs/9-cli-reference/uc_image_push.md @@ -5,7 +5,7 @@ Upload a local Docker image to the cluster. ## Synopsis Upload a local Docker image to the cluster transferring only the missing layers. -The image is uploaded to the machine which CLI is connected to (default) or the specified machine(s). +The image is uploaded to all cluster machines (default) or the specified machine(s). ``` uc image push IMAGE [flags] @@ -14,7 +14,7 @@ uc image push IMAGE [flags] ## Examples ``` - # Push image to the machine the CLI is connected to. + # Push image to all machines in the cluster. uc image push myapp:latest # Push image to specific machine. @@ -23,9 +23,6 @@ uc image push IMAGE [flags] # Push image to multiple machines. uc image push myapp:latest -m machine1,machine2,machine3 - # Push image to all machines in the cluster. - uc image push myapp:latest -m all - # Push a specific platform of a multi-platform image. uc image push myapp:latest --platform linux/amd64 ```