Skip to content

Commit 5fdeccb

Browse files
committed
Examples of shortcut apps
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
1 parent de0e699 commit 5fdeccb

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

cmd/oci/install.go

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,17 @@ func MakeOciInstall() *cobra.Command {
2323
Short: "Install the contents of an OCI image to a given path",
2424
Long: `Use this command to install binaries or packages distributed within an
2525
OCI image.`,
26-
Example: ` # Install vmmeter to /usr/local/bin
27-
arkade oci install ghcr.io/openfaasltd/vmmeter
26+
Example: ` # Install slicer to /usr/local/bin
27+
arkade oci install ghcr.io/openfaasltd/slicer
2828
29-
# Install a specific version of vmmeter to /tmp/
30-
arkade oci install ghcr.io/openfaasltd/vmmeter --path /tmp --version 0.1.0
29+
# Install a specific version of slicer to /tmp/
30+
arkade oci install ghcr.io/openfaasltd/slicer --path /tmp --version 0.1.0
3131
32-
# Install vmmeter for arm64 as an architecture override, instead of using uname
33-
arkade oci install ghcr.io/openfaasltd/vmmeter --arch arm64
32+
# Install slicer for arm64 as an architecture override, instead of using uname
33+
arkade oci install ghcr.io/openfaasltd/slicer --arch arm64
34+
35+
# Use a shortcut for the image name (vmmeter, slicer, k3sup-pro)
36+
arkade oci install k3sup-pro
3437
`,
3538
SilenceUsage: true,
3639
}

0 commit comments

Comments
 (0)