Skip to content

Commit fc19b9a

Browse files
authored
Release 0.8.0 (#740)
* Release 0.8.0 * re-push
1 parent d450679 commit fc19b9a

4 files changed

Lines changed: 8 additions & 7 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ endif
9090

9191
# Update these variables when preparing a new release or a release branch.
9292
# Then run `make prepare-release-branch`
93-
RELEASE_VERSION=v0.7.0
93+
RELEASE_VERSION=v0.8.0
9494
RELEASE_BRANCH=main
9595
# Version used form Helm which is not using the leading "v"
9696
CHART_VERSION := $(shell echo $(RELEASE_VERSION) | cut -c2-)

charts/lws/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ version: 0.1.0
1818
# incremented each time you make changes to the application. Versions are not expected to
1919
# follow Semantic Versioning. They should reflect the version the application is using.
2020
# It is recommended to use it with quotes.
21-
appVersion: "v0.7.0"
21+
appVersion: "v0.8.0"

site/content/en/docs/installation/_index.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,9 @@ machine type for your nodes.**
3838

3939
To install a released version of LeaderWorkerSet in your cluster, run the following command:
4040

41+
4142
```shell
42-
VERSION=v0.7.0
43+
VERSION=v0.8.0
4344
kubectl apply --server-side -f https://github.com/kubernetes-sigs/lws/releases/download/$VERSION/manifests.yaml
4445
```
4546

@@ -54,7 +55,7 @@ kubectl wait deploy/lws-controller-manager -n lws-system --for=condition=availab
5455
To install a released version of lws in your cluster by [Helm](https://helm.sh/), run the following command:
5556

5657
```shell
57-
CHART_VERSION=0.7.0
58+
CHART_VERSION=0.8.0
5859
helm install lws oci://registry.k8s.io/lws/charts/lws \
5960
--version=$CHART_VERSION \
6061
--namespace lws-system \
@@ -65,7 +66,7 @@ helm install lws oci://registry.k8s.io/lws/charts/lws \
6566
You can also use the following command:
6667

6768
```shell
68-
VERSION=v0.7.0
69+
VERSION=v0.8.0
6970
helm install lws https://github.com/kubernetes-sigs/lws/releases/download/$VERSION/lws-chart-$VERSION.tgz \
7071
--namespace lws-system \
7172
--create-namespace \
@@ -77,7 +78,7 @@ helm install lws https://github.com/kubernetes-sigs/lws/releases/download/$VERSI
7778
To uninstall a released version of LeaderWorkerSet from your cluster, run the following command:
7879

7980
```shell
80-
VERSION=v0.7.0
81+
VERSION=v0.8.0
8182
kubectl delete -f https://github.com/kubernetes-sigs/lws/releases/download/$VERSION/manifests.yaml
8283
```
8384

site/hugo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ ignoreFiles = []
8989
# The major.minor version tag for the version of the docs represented in this
9090
# branch of the repository. Used in the "version-banner" partial to display a
9191
# version number for this doc set.
92-
version = "v0.7.0"
92+
version = "v0.8.0"
9393

9494
# Flag used in the "version-banner" partial to decide whether to display a
9595
# banner on every page indicating that this is an archived version of the docs.

0 commit comments

Comments
 (0)