Skip to content

Fix --embed-runtime-image build doc #950

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions content/master/cli/command-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ The `crossplane` CLI supports building

| Short flag | Long flag | Description |
| ------------ | ------------- | ------------------------------ |
| | `--embed-runtime-image-name=NAME` | The image name and tag of an image to include in the package. Only for provider and function packages. |
| | `--embed-runtime-image=NAME` | The image name and tag of an image to include in the package. Only for provider and function packages. |
| | `--embed-runtime-image-tarball=PATH` | The filename of an image to include in the package. Only for provider and function packages. |
| `-e` | `--examples-root="./examples"` | The path to a directory of examples related to the package. |
| | `--ignore=PATH,...` | List of files and directories to ignore. |
Expand Down Expand Up @@ -245,11 +245,11 @@ Include YAML files demonstrating how to use the package with `--examples-root`.
Functions and Providers require YAML files describing their dependencies and
settings as well as a container image for their runtime.

Using `--embed-runtime-image-name` runs a specified image and
Using `--embed-runtime-image` runs a specified image and
includes the image inside the function or provider package.

{{<hint "note" >}}
Images referenced with `--embed-runtime-image-name` must be in the local Docker
Images referenced with `--embed-runtime-image` must be in the local Docker
cache.

Use `docker pull` to download a missing image.
Expand Down