Skip to content
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

Update install.md #1889

Merged
merged 5 commits into from
Feb 15, 2024
Merged
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
15 changes: 7 additions & 8 deletions docs/manual/clabernetes/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ To upgrade to the latest version re-run the installation command and the latest
To install a specific clabernetes version add `--version` flag like so:

```bash
helm upgrade --version 0.0.22 --install \
helm upgrade --version 0.0.25 --install \
clabernetes oci://ghcr.io/srl-labs/clabernetes/clabernetes
```

Expand Down Expand Up @@ -66,8 +66,8 @@ Clabverter is versioned in the same way as Clabernetes, and the easiest way to u
///tab | latest version
<!-- --8<-- [start:cv-install] -->
```bash title="set up <code>clabverter</code> alias"
alias clabverter="mkdir -p converted && chown -R 65532:65532 converted && \
sudo docker run -v $(pwd):/clabernetes/work --rm \
alias clabverter="sudo docker run --user $(id -u) \
-v $(pwd):/clabernetes/work --rm \
ghcr.io/srl-labs/clabernetes/clabverter"
```
<!-- --8<-- [end:cv-install] -->
Expand All @@ -76,8 +76,8 @@ alias clabverter="mkdir -p converted && chown -R 65532:65532 converted && \
In case you need to install a specific version:

```bash
alias clabverter="mkdir -p converted && chown -R 65532:65532 converted && \
sudo docker run -v $(pwd):/clabernetes/work --rm \
alias clabverter="sudo docker run --user $(id -u) \
-v $(pwd):/clabernetes/work --rm \
ghcr.io/srl-labs/clabernetes/clabverter:0.0.22"
```

Expand All @@ -86,9 +86,8 @@ alias clabverter="mkdir -p converted && chown -R 65532:65532 converted && \
To use the latest development version of clabverter:

```bash
sudo docker pull ghcr.io/srl-labs/clabernetes/clabverter:dev-latest && \
alias clabverter="mkdir -p converted && chown -R 65532:65532 converted && \
sudo docker run -v $(pwd):/clabernetes/work --rm \
alias clabverter="sudo docker run --pull always --user $(id -u) \
-v $(pwd):/clabernetes/work --rm \
ghcr.io/srl-labs/clabernetes/clabverter:dev-latest"
```

Expand Down