Skip to content

[docs] Use version macro in some additional places #6024

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

Merged
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
6 changes: 3 additions & 3 deletions docs/governance/cncf/gtr.md
Original file line number Diff line number Diff line change
Expand Up @@ -329,17 +329,17 @@ k0s project follows closely the upstream Kubernetes release cycle. The only diff
The k0s version string consists of the Kubernetes version and the k0s version. For example:

```text
v1.33.2+k0s.0
{{{ k0s_version }}}
```

The Kubernetes version (1.33.2) is the first part, and the last part (k0s.0) reflects the k0s version, which is built on top of the certain Kubernetes version.
The Kubernetes version ({{{ k0s_version.split('+') | first }}}) is the first part, and the last part ({{{ k0s_version.split('+') | last }}}) reflects the k0s version, which is built on top of the certain Kubernetes version.

## Installation

Here’s an example of how to set a single node cluster:

```console
# export K0S_VERSION=v1.33.2+k0s.0
# export K0S_VERSION={{{ k0s_version }}}
# curl -sSfL https://github.com/k0sproject/k0s/releases/download/$K0S_VERSION/k0s-$K0S_VERSION-amd64 -o k0s
# chmod u+x k0s
# ./k0s install controller --single && ./k0s start
Expand Down