Skip to content

Commit cd3a73a

Browse files
committed
Release 0.7.0
Signed-off-by: kerthcet <[email protected]>
1 parent 4aceb20 commit cd3a73a

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

Makefile

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

8686
# Update these variables when preparing a new release or a release branch.
8787
# Then run `make prepare-release-branch`
88-
RELEASE_VERSION=v0.6.2
88+
RELEASE_VERSION=v0.7.0
8989
RELEASE_BRANCH=main
9090
# Version used form Helm which is not using the leading "v"
9191
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.6.2"
21+
appVersion: "v0.7.0"

charts/lws/values.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ imagePullSecrets: []
1111
# Customize controlerManager
1212
image:
1313
manager:
14-
repository: us-central1-docker.pkg.dev/k8s-staging-images/lws/lws
14+
repository: registry.k8s.io/lws/lws
1515
# tag, if defined will use the given image tag, else Chart.AppVersion will be used
1616
tag: main
1717
pullPolicy: Always
@@ -48,7 +48,6 @@ resources:
4848
nodeSelector: {}
4949
tolerations: []
5050
affinity: {}
51-
5251
# gangSchedulingManagement is configuration for gang scheduling management.
5352
# For example:
5453
# gangSchedulingManagement:

site/config.toml

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

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

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ machine type for your nodes.**
3939
To install a released version of LeaderWorkerSet in your cluster, run the following command:
4040

4141
```shell
42-
VERSION=v0.6.2
42+
VERSION=v0.7.0
4343
kubectl apply --server-side -f https://github.com/kubernetes-sigs/lws/releases/download/$VERSION/manifests.yaml
4444
```
4545

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

5656
```shell
57-
CHART_VERSION=0.6.2
57+
CHART_VERSION=0.7.0
5858
helm install lws oci://registry.k8s.io/lws/charts/lws \
5959
--version=$CHART_VERSION \
6060
--namespace lws-system \
@@ -65,7 +65,7 @@ helm install lws oci://registry.k8s.io/lws/charts/lws \
6565
You can also use the following command:
6666

6767
```shell
68-
VERSION=v0.6.2
68+
VERSION=v0.7.0
6969
helm install lws https://github.com/kubernetes-sigs/lws/releases/download/$VERSION/lws-chart-$VERSION.tgz \
7070
--namespace lws-system \
7171
--create-namespace \
@@ -77,7 +77,7 @@ helm install lws https://github.com/kubernetes-sigs/lws/releases/download/$VERSI
7777
To uninstall a released version of LeaderWorkerSet from your cluster, run the following command:
7878

7979
```shell
80-
VERSION=v0.6.2
80+
VERSION=v0.7.0
8181
kubectl delete -f https://github.com/kubernetes-sigs/lws/releases/download/$VERSION/manifests.yaml
8282
```
8383

0 commit comments

Comments
 (0)