Skip to content

Commit

Permalink
chore: update k3s version and set new dev version
Browse files Browse the repository at this point in the history
- Update `getk3s.sh` script to download k3s version v1.26.13+k3s2 instead of v1.26.11+k3s2
- Update `version.json` to set the `latest`, `stable`, and `dev` versions to 3.0.13 instead of 3.0.11

Signed-off-by: ysicing <[email protected]>
  • Loading branch information
ysicing committed Feb 7, 2024
1 parent 581982a commit d34975b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions hack/scripts/getk3s.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
set -xe

if [ ! -f "hack/bin/k3s-linux-amd64" ]; then
wget -O hack/bin/k3s-linux-amd64 https://github.com/k3s-io/k3s/releases/download/v1.26.11%2Bk3s2/k3s
wget -O hack/bin/k3s-linux-amd64 https://github.com/k3s-io/k3s/releases/download/v1.26.13%2Bk3s2/k3s
fi
if [ ! -f "hack/bin/k3s-linux-arm64" ]; then
wget -O hack/bin/k3s-linux-arm64 https://github.com/k3s-io/k3s/releases/download/v1.26.11%2Bk3s2/k3s-arm64
wget -O hack/bin/k3s-linux-arm64 https://github.com/k3s-io/k3s/releases/download/v1.26.13%2Bk3s2/k3s-arm64
fi

chmod +x hack/bin/k3s-linux-amd64 hack/bin/k3s-linux-arm64
6 changes: 3 additions & 3 deletions version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"latest": "3.0.11",
"stable": "3.0.11",
"dev": "3.0.11"
"latest": "3.0.13",
"stable": "3.0.13",
"dev": "3.0.13"
}

0 comments on commit d34975b

Please sign in to comment.