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

docs/cli: Remove version pinning to allow installs #473

Merged
merged 1 commit into from
Jan 8, 2025
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
4 changes: 2 additions & 2 deletions content/docs/cli/install.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
your host system, `kraft` itself can be used on the following supported systems
to build and package unikernels.


Check failure on line 13 in content/docs/cli/install.mdx

View workflow job for this annotation

GitHub Actions / Markdown Linter

Multiple consecutive blank lines [Expected: 1; Actual: 2]

Check failure on line 13 in content/docs/cli/install.mdx

View workflow job for this annotation

GitHub Actions / Markdown Linter

Multiple consecutive blank lines [Expected: 1; Actual: 2]
## Recommended installation method

You can quickly and easily install KraftKit using the interactive installer.
Expand All @@ -24,7 +24,7 @@
installation process, including suggestions for how to receive updates. The
installer will try to use your native package manager.


Check failure on line 27 in content/docs/cli/install.mdx

View workflow job for this annotation

GitHub Actions / Markdown Linter

Multiple consecutive blank lines [Expected: 1; Actual: 2]

Check failure on line 27 in content/docs/cli/install.mdx

View workflow job for this annotation

GitHub Actions / Markdown Linter

Multiple consecutive blank lines [Expected: 1; Actual: 2]
## macOS

The simplest way to install `kraft` on macOS is via `brew`:
Expand Down Expand Up @@ -79,8 +79,8 @@
Use the following command to set up the APT repository:

```console
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/unikraft.gpg] https://deb.pkg.kraftkit.sh \
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/unikraft.list > /dev/null
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/unikraft.gpg] https://deb.pkg.kraftkit.sh /" | \
sudo tee /etc/apt/sources.list.d/unikraft.list > /dev/null
```

Update the APT package index, and install the latest version of `kraftkit`:
Expand All @@ -90,7 +90,7 @@
sudo apt-get install kraftkit
```


Check failure on line 93 in content/docs/cli/install.mdx

View workflow job for this annotation

GitHub Actions / Markdown Linter

Multiple consecutive blank lines [Expected: 1; Actual: 2]

Check failure on line 93 in content/docs/cli/install.mdx

View workflow job for this annotation

GitHub Actions / Markdown Linter

Multiple consecutive blank lines [Expected: 1; Actual: 2]
## Fedora/RHEL

We recommend installing KraftKit using the interactive method described above.
Expand All @@ -107,12 +107,12 @@
```

Then run:
```bash

Check failure on line 110 in content/docs/cli/install.mdx

View workflow job for this annotation

GitHub Actions / Markdown Linter

Fenced code blocks should be surrounded by blank lines [Context: "```bash"]

Check failure on line 110 in content/docs/cli/install.mdx

View workflow job for this annotation

GitHub Actions / Markdown Linter

Fenced code blocks should be surrounded by blank lines [Context: "```bash"]
yum makecache
yum install -y kraftkit
```


Check failure on line 115 in content/docs/cli/install.mdx

View workflow job for this annotation

GitHub Actions / Markdown Linter

Multiple consecutive blank lines [Expected: 1; Actual: 2]

Check failure on line 115 in content/docs/cli/install.mdx

View workflow job for this annotation

GitHub Actions / Markdown Linter

Multiple consecutive blank lines [Expected: 1; Actual: 2]
## Arch Linux

We recommend installing KraftKit using the interactive method described above.
Expand All @@ -124,7 +124,7 @@
makepkg -si
```


Check failure on line 127 in content/docs/cli/install.mdx

View workflow job for this annotation

GitHub Actions / Markdown Linter

Multiple consecutive blank lines [Expected: 1; Actual: 2]

Check failure on line 127 in content/docs/cli/install.mdx

View workflow job for this annotation

GitHub Actions / Markdown Linter

Multiple consecutive blank lines [Expected: 1; Actual: 2]
## Windows

KraftKit currently does not support an installation natively on Microsoft Windows.
Expand Down Expand Up @@ -176,7 +176,7 @@
Thank you!
</Info>


Check failure on line 179 in content/docs/cli/install.mdx

View workflow job for this annotation

GitHub Actions / Markdown Linter

Multiple consecutive blank lines [Expected: 1; Actual: 2]

Check failure on line 179 in content/docs/cli/install.mdx

View workflow job for this annotation

GitHub Actions / Markdown Linter

Multiple consecutive blank lines [Expected: 1; Actual: 2]
## Build unikernels from within a container

<Warning>
Expand All @@ -189,7 +189,7 @@
all the tools necessary for building Unikraft unikernrels, including the latest
version of `kraft`.


Check failure on line 192 in content/docs/cli/install.mdx

View workflow job for this annotation

GitHub Actions / Markdown Linter

Multiple consecutive blank lines [Expected: 1; Actual: 2]

Check failure on line 192 in content/docs/cli/install.mdx

View workflow job for this annotation

GitHub Actions / Markdown Linter

Multiple consecutive blank lines [Expected: 1; Actual: 2]
```console
docker run -it --rm -v `pwd`:/app kraftkit.sh/base:latest
```
Expand Down
Loading