From 3f87c5f9c64b40b850f9fe33f4f474a5d3714680 Mon Sep 17 00:00:00 2001 From: unclegedd Date: Fri, 7 Jun 2024 14:15:23 -0500 Subject: [PATCH] small docs --- docs/quickstart-and-usage.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/quickstart-and-usage.md b/docs/quickstart-and-usage.md index 52ab1447..4bbf6ca7 100644 --- a/docs/quickstart-and-usage.md +++ b/docs/quickstart-and-usage.md @@ -87,11 +87,11 @@ Inspect the `uds-bundle.yaml` of a bundle 1. From your local filesystem: `uds inspect uds-bundle-.tar.zst` #### Viewing Images in a Bundle -It is possible derive images from a `uds-bundle.yaml`. This can be useful for situations where you need to know what images will be bundled before you actually create the bundle. This is accomplished with the `--list-images`. For example: +It is possible to derive images from a `uds-bundle.yaml`. This can be useful for situations where you need to know what images will be bundled before you actually create the bundle. This is accomplished with the `--list-images` flag. For example: `uds inspect ./uds-bundle.yaml --list-images` -This command will return a list of images derived from the bundle's packages and taking into account optional and required package components. +This command will return a list of images derived from the bundle's packages, taking into account optional and required package components. #### Viewing SBOMs There are 2 additional flags for the `uds inspect` command you can use to extract and view SBOMs: @@ -143,7 +143,7 @@ When deploying a local bundle, the bundle's architecture will be used for compar It is possible to override the bundle architecture used at validation time by using the `--architecture` / `-a` flag. {{% /alert-note %}} -If, for example, you have a multi-arch remote bundle that you want to deploy from an arm64 machine to an amd64 cluster, the validation with fail because the system arch does not match the cluster arch. However, you can pull the correct bundle version by specificying the arch with the command line architecture flag. +If, for example, you have a multi-arch remote bundle that you want to deploy from an arm64 machine to an amd64 cluster, the validation with fail because the system arch does not match the cluster arch. However, you can pull the correct bundle version by specifying the arch with the command line architecture flag. e.g. `uds deploy -a amd64 --confirm`