Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
vitobotta committed Feb 21, 2022
1 parent 8855cfe commit 1c5aba6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
hetzner-k3s (0.5.3)
hetzner-k3s (0.5.4)
bcrypt_pbkdf
ed25519
http
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,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.5.3 create-cluster --config-file /cluster/test.yaml
docker run --rm -it -v ${PWD}:/cluster -v ${HOME}/.ssh:/tmp/.ssh vitobotta/hetzner-k3s:v0.5.4 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.5.3 \
docker build -t ${IMAGE}:v0.5.4 \
--platform=linux/amd64 \
--cache-from ${IMAGE}:v0.5.2 \
--cache-from ${IMAGE}:v0.5.3 \
--build-arg BUILDKIT_INLINE_CACHE=1 .

docker push vitobotta/hetzner-k3s:v0.5.3
docker push vitobotta/hetzner-k3s:v0.5.4
2 changes: 1 addition & 1 deletion lib/hetzner/k3s/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Hetzner
module K3s
VERSION = '0.5.3'
VERSION = '0.5.4'
end
end

0 comments on commit 1c5aba6

Please sign in to comment.