Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
vitobotta committed Jan 8, 2022
1 parent a947a81 commit 46997eb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ This will install the `hetzner-k3s` executable in your PATH.
Alternatively, if you don't want to set up a Ruby runtime but have Docker installed, you can use a container. Run the following from inside the directory where you have the config file for the cluster (described in the next section):

```bash
docker run --rm -it -v ${PWD}:/cluster -v ${HOME}/.ssh:/tmp/.ssh vitobotta/hetzner-k3s:v0.4.8 create-cluster --config-file /cluster/test.yaml
docker run --rm -it -v ${PWD}:/cluster -v ${HOME}/.ssh:/tmp/.ssh vitobotta/hetzner-k3s:v0.4.9 create-cluster --config-file /cluster/test.yaml
```

Replace `test.yaml` with the name of your config file.
Expand Down
6 changes: 3 additions & 3 deletions bin/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ set -e

IMAGE="vitobotta/hetzner-k3s"

docker build -t ${IMAGE}:v0.4.8 \
docker build -t ${IMAGE}:v9 \
--platform=linux/amd64 \
--cache-from ${IMAGE}:v0.4.7 \
--cache-from ${IMAGE}:v0.4.8 \
--build-arg BUILDKIT_INLINE_CACHE=1 .

docker push vitobotta/hetzner-k3s:v0.4.8
docker push vitobotta/hetzner-k3s:v0.4.9
2 changes: 1 addition & 1 deletion lib/hetzner/k3s/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Hetzner
module K3s
VERSION = "0.4.8"
VERSION = "0.4.9"
end
end

0 comments on commit 46997eb

Please sign in to comment.