Skip to content

Commit bacca5a

Browse files
authored
Ready to release 4.9.0 (#185)
1 parent 05fa83f commit bacca5a

2 files changed

Lines changed: 15 additions & 15 deletions

File tree

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ There are required values that you must set explicitly when deploying SkyWalking
1717

1818
| name | description | example |
1919
| ---- | ----------- | ------- |
20-
| `oap.image.tag` | the OAP docker image tag | `10.3.0` |
20+
| `oap.image.tag` | the OAP docker image tag | `10.4.0` |
2121
| `oap.storageType` | the storage type of the OAP | `elasticsearch`, `postgresql`, `banyandb`, etc. |
22-
| `ui.image.tag` | the UI docker image tag | `10.3.0` |
22+
| `ui.image.tag` | the UI docker image tag | `10.4.0` |
2323

24-
You can set these required values via command line (e.g. `--set oap.image.tag=10.3.0 --set oap.storageType=elasticsearch`),
24+
You can set these required values via command line (e.g. `--set oap.image.tag=10.4.0 --set oap.storageType=elasticsearch`),
2525
or edit them in a separate file(e.g. [`values.yaml`](chart/skywalking/values.yaml), [`values-my-es.yaml`](chart/skywalking/values-my-es.yaml))
2626
and use `-f <filename>` or `--values=<filename>` to set them.
2727

@@ -30,7 +30,7 @@ and use `-f <filename>` or `--values=<filename>` to set them.
3030
Let's set some variables for convenient use later.
3131

3232
```shell
33-
export SKYWALKING_RELEASE_VERSION=4.7.0 # change the release version according to your need
33+
export SKYWALKING_RELEASE_VERSION=4.9.0 # change the release version according to your need
3434
export SKYWALKING_RELEASE_NAME=skywalking # change the release name according to your scenario
3535
export SKYWALKING_RELEASE_NAMESPACE=default # change the namespace to where you want to install SkyWalking
3636
```
@@ -42,9 +42,9 @@ helm install "${SKYWALKING_RELEASE_NAME}" \
4242
oci://registry-1.docker.io/apache/skywalking-helm \
4343
--version "${SKYWALKING_RELEASE_VERSION}" \
4444
-n "${SKYWALKING_RELEASE_NAMESPACE}" \
45-
--set oap.image.tag=10.3.0 \
45+
--set oap.image.tag=10.4.0 \
4646
--set oap.storageType=elasticsearch \
47-
--set ui.image.tag=10.3.0
47+
--set ui.image.tag=10.4.0
4848
```
4949

5050
To use BanyanDB as storage solution, you can try
@@ -54,12 +54,12 @@ helm install "${SKYWALKING_RELEASE_NAME}" \
5454
oci://registry-1.docker.io/apache/skywalking-helm \
5555
--version "${SKYWALKING_RELEASE_VERSION}" \
5656
-n "${SKYWALKING_RELEASE_NAMESPACE}" \
57-
--set oap.image.tag=10.3.0 \
57+
--set oap.image.tag=10.4.0 \
5858
--set oap.storageType=banyandb \
59-
--set ui.image.tag=10.3.0 \
59+
--set ui.image.tag=10.4.0 \
6060
--set elasticsearch.enabled=false \
6161
--set banyandb.enabled=true \
62-
--set banyandb.image.tag=0.9.0
62+
--set banyandb.image.tag=0.10.1
6363
```
6464

6565
BanyanDB can be configured through various parameters. A comprehensive list of these parameters can be found in the configuration section of [BanyanDB Helm](https://github.com/apache/skywalking-banyandb-helm?tab=readme-ov-file#configuration) repository. These parameters allow you to customize aspects such as replication, resource allocation, persistence, and more to suit your specific deployment needs. Remember to prepend 'banyandb.' to all parameter names when applying the settings. For example, `banyandb.image.tag` can be used to specify the version of BanyanDB.
@@ -129,13 +129,13 @@ specify those configurations, they may take no effect.
129129

130130
here are some examples.
131131

132-
- Deploy SkyWalking 10.3.0
132+
- Deploy SkyWalking 10.4.0
133133

134134
```shell script
135135
helm install "${SKYWALKING_RELEASE_NAME}" ${REPO}/skywalking -n "${SKYWALKING_RELEASE_NAMESPACE}" \
136-
--set oap.image.tag=10.3.0 \
136+
--set oap.image.tag=10.4.0 \
137137
--set oap.storageType=elasticsearch \
138-
--set ui.image.tag=10.3.0 \
138+
--set ui.image.tag=10.4.0 \
139139
--set eck-operator.installCRDs=false
140140
```
141141

@@ -177,9 +177,9 @@ helm -n istio-system install skywalking \
177177
oci://ghcr.io/apache/skywalking-helm/skywalking-helm \
178178
--version "0.0.0-b670c41d94a82ddefcf466d54bab5c492d88d772" \
179179
-n "${SKYWALKING_RELEASE_NAMESPACE}" \
180-
--set oap.image.tag=10.3.0 \
180+
--set oap.image.tag=10.4.0 \
181181
--set oap.storageType=elasticsearch \
182-
--set ui.image.tag=10.3.0
182+
--set ui.image.tag=10.4.0
183183
```
184184

185185
## Install development version using source codes

chart/skywalking/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
apiVersion: v2
1717
name: skywalking-helm
1818
home: https://skywalking.apache.org
19-
version: 4.8.0
19+
version: 4.9.0
2020
description: Helm Chart for Apache SkyWalking
2121
icon: https://raw.githubusercontent.com/apache/skywalking-kubernetes/master/logo/sw-logo-for-chart.jpg
2222
sources:

0 commit comments

Comments
 (0)