From f1e9f1a1310e133073cc3d1c1a1214fa7128eb09 Mon Sep 17 00:00:00 2001 From: "kay.yan" Date: Tue, 12 Jul 2022 02:42:33 +0800 Subject: [PATCH] dump version 1.1.0-beta.3 --- CHANGELOG.md | 9 ++++++++- Dockerfile.static | 3 ++- charts/Chart.yaml | 4 ++-- charts/README.md | 4 ++-- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6092468..2edab1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.1.0-beta.3 (2022-07-12) + +#### Enhancements: + +- [#43] add no-nginx image + +--- + ## 1.1.0-beta.1 (2022-05-20) #### Enhancements: @@ -12,4 +20,3 @@ - [#32] Update the Nginx version to fix the CVEs - [#25] Update the Nginx version to fix the CVEs ---- diff --git a/Dockerfile.static b/Dockerfile.static index daf6faf..9e200cd 100644 --- a/Dockerfile.static +++ b/Dockerfile.static @@ -16,7 +16,8 @@ CMD [] ENV FOLDER /web ENV PORT 80 # ENV SHOW_LISTING false -# ENV DEBUG true +# Show log +ENV DEBUG true # Add 2048 stuff into Static server COPY . /web \ No newline at end of file diff --git a/charts/Chart.yaml b/charts/Chart.yaml index ddb498a..40e8fa9 100644 --- a/charts/Chart.yaml +++ b/charts/Chart.yaml @@ -18,10 +18,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.1.0-beta.2 +version: 1.1.0-beta.3 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: v1.1.0-beta.2 +appVersion: v1.1.0-beta.3 diff --git a/charts/README.md b/charts/README.md index 665c91d..0876aab 100644 --- a/charts/README.md +++ b/charts/README.md @@ -11,7 +11,7 @@ open shell and input: ``` -export VERSION=1.1.0-beta.2 +export VERSION=v1.1.0-beta.3 docker run -d -p 8080:80 ghcr.io/daocloud/dao-2048:$VERSION ``` @@ -20,7 +20,7 @@ open browser and view http://:8080 . ## Run in kubernetes ``` -export VERSION=1.1.0-beta.2 +export VERSION=v1.1.0-beta.3 helm repo add dao-2048 http://daocloud.github.io/dao-2048/ helm install dao-2048/dao-2048 --generate-name --version $VERSION ```