Skip to content

Commit

Permalink
update version reference in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
AnchorArray committed Apr 11, 2024
1 parent 5463ed3 commit efaa671
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,26 +18,26 @@
# Downloads a .tgz file to the working directory or --destination path
helm pull \
oci://ghcr.io/whylabs/langkit \
--version "0.10.0"
--version "0.17.0"

helm diff upgrade \
--allow-unreleased \
--namespace langkit \
`# Specify the .tgz file as the chart` \
langkit langkit-0.10.0.tgz
langkit langkit-0.17.0.tgz

helm upgrade --install \
--create-namespace \
--namespace langkit \
langkit langkit-0.10.0.tgz
langkit langkit-0.17.0.tgz
```

#### Extended Example
```shell
# Configure local variables for clarity and simplicity
helm_repo="ghcr.io/whylabs"
chart_name="langkit"
chart_version="0.10.0"
chart_version="0.17.0"
chart="${chart_name}-${chart_version}.tgz"

# Release and namespace values mirror other variables for simplicity.
Expand Down
6 changes: 3 additions & 3 deletions charts/langkit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,22 +69,22 @@ View the difference between the current state and desired state.
# helm plugin install https://github.com/databus23/helm-diff
helm diff upgrade \
--allow-unreleased \
langkit langkit-0.12.0.tgz
langkit langkit-0.17.0.tgz
```

### Install/Update
```shell
helm upgrade --install \
--create-namespace \
--namespace langkit \
langkit langkit-0.12.0.tgz
langkit langkit-0.17.0.tgz
```

### Uninstall
```shell
helm uninstall \
--namespace langkit \
langkit langkit-0.12.0.tgz
langkit langkit-0.17.0.tgz
```

## Development
Expand Down

0 comments on commit efaa671

Please sign in to comment.