Skip to content

Commit

Permalink
docs: update readme versions
Browse files Browse the repository at this point in the history
Signed-off-by: Mathew Wicks <thesuperzapper@users.noreply.github.com>
  • Loading branch information
thesuperzapper committed Aug 9, 2023
1 parent 243937f commit bf14bd3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ The simplest usage of the `deploykf` CLI is to run the following command:

```bash
deploykf \
--source-version 0.1.0 \
--source-version 0.1.1 \
--values ./custom-values.yaml \
--output-dir ./GENERATOR_OUTPUT
```

This command will generate deployKF manifests in the `./GENERATOR_OUTPUT` directory using the `v0.1.0` source version and the values specified in your `./custom-values.yaml` file.
This command will generate deployKF manifests in the `./GENERATOR_OUTPUT` directory using the `v0.1.1` source version and the values specified in your `./custom-values.yaml` file.
Note that the `--source-version` flag must correspond to a tag from a [deployKF release](https://github.com/deployKF/deployKF/releases).

> __TIP:__
Expand All @@ -46,15 +46,15 @@ We publish the `deploykf` CLI as a container image on the following registries:
To use the container image, you need to mount your local filesystem into the container:

```bash
CONTAINER_IMAGE="ghcr.io/deploykf/cli:0.1.1"
CONTAINER_IMAGE="ghcr.io/deploykf/cli:0.1.2"

docker run \
--rm \
--volume "$(pwd):/home/deploykf" \
--volume "${HOME}/.deploykf:/home/deploykf/.deploykf" \
"${CONTAINER_IMAGE}" \
generate \
--source-version "0.1.0" \
--source-version "0.1.1" \
--values ./sample-values.yaml \
--output-dir ./GENERATOR_OUTPUT
```
Expand Down

0 comments on commit bf14bd3

Please sign in to comment.