From a687d9876aa9be199eb0a6c44928c2ba9fcb07ee Mon Sep 17 00:00:00 2001 From: Jacie Date: Thu, 31 Mar 2022 14:48:24 +0800 Subject: [PATCH] feat(autok3s): bump up version to v0.4.9 --- README.md | 4 ++-- docker-compose.yaml | 2 +- hack/make-rules/autok3s.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a2d9fc5d..fe5d7d29 100644 --- a/README.md +++ b/README.md @@ -57,10 +57,10 @@ Scenario 1 - Run with docker: ```bash # The commands will start autok3s daemon with an interactionable UI. # Standard Linux (Recommended) -$ docker run -itd --restart=unless-stopped --net=host -v /var/run/docker.sock:/var/run/docker.sock cnrancher/autok3s:v0.4.8 +$ docker run -itd --restart=unless-stopped --net=host -v /var/run/docker.sock:/var/run/docker.sock cnrancher/autok3s:v0.4.9 # MacOS -$ docker run -itd --restart=unless-stopped -p 8080:8080 -v /var/run/docker.sock:/var/run/docker.sock cnrancher/autok3s:v0.4.8 +$ docker run -itd --restart=unless-stopped -p 8080:8080 -v /var/run/docker.sock:/var/run/docker.sock cnrancher/autok3s:v0.4.9 ``` Scenario 2 - Run with docker-compose ```bash diff --git a/docker-compose.yaml b/docker-compose.yaml index f06e91ab..c9d541d9 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -7,7 +7,7 @@ services: volumes: - /var/run/docker.sock:/tmp/docker.sock:ro autok3s: - image: cnrancher/autok3s:v0.4.8 + image: cnrancher/autok3s:v0.4.9 init: true ports: - 8080 diff --git a/hack/make-rules/autok3s.sh b/hack/make-rules/autok3s.sh index 878b6cfe..e5b3637a 100755 --- a/hack/make-rules/autok3s.sh +++ b/hack/make-rules/autok3s.sh @@ -8,7 +8,7 @@ CURR_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd -P)" # The root of the autok3s directory ROOT_DIR="${CURR_DIR}" -UI_VERSION="v0.4.9-rc1" +UI_VERSION="v0.4.9" source "${ROOT_DIR}/hack/lib/init.sh" source "${CURR_DIR}/hack/lib/constant.sh"