From 1d52caf44de1521c28e82a9711a0b3373c3219cd Mon Sep 17 00:00:00 2001 From: Gao Hongtao Date: Mon, 24 Nov 2025 07:02:08 +0000 Subject: [PATCH 1/2] chore: bump BanyanDB Helm version to 0.5.2 and update OAP/UI image tags to 10.3.0 --- CHANGES.md | 2 +- README.md | 28 ++++++++++++++-------------- chart/skywalking/Chart.yaml | 2 +- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 9aa2f70..908dcc5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,7 +5,7 @@ Release Notes. 4.8.0 ------------------ -- Bump up BanyanDB Helm version to 0.5.0. +- Bump up BanyanDB Helm version to 0.5.2. 4.7.0 ------------------ diff --git a/README.md b/README.md index 0c28bb7..7443441 100644 --- a/README.md +++ b/README.md @@ -17,11 +17,11 @@ There are required values that you must set explicitly when deploying SkyWalking | name | description | example | | ---- | ----------- | ------- | -| `oap.image.tag` | the OAP docker image tag | `10.1.0` | +| `oap.image.tag` | the OAP docker image tag | `10.3.0` | | `oap.storageType` | the storage type of the OAP | `elasticsearch`, `postgresql`, `banyandb`, etc. | -| `ui.image.tag` | the UI docker image tag | `10.1.0` | +| `ui.image.tag` | the UI docker image tag | `10.3.0` | -You can set these required values via command line (e.g. `--set oap.image.tag=10.1.0 --set oap.storageType=elasticsearch`), +You can set these required values via command line (e.g. `--set oap.image.tag=10.3.0 --set oap.storageType=elasticsearch`), 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)) and use `-f ` or `--values=` to set them. @@ -42,9 +42,9 @@ helm install "${SKYWALKING_RELEASE_NAME}" \ oci://registry-1.docker.io/apache/skywalking-helm \ --version "${SKYWALKING_RELEASE_VERSION}" \ -n "${SKYWALKING_RELEASE_NAMESPACE}" \ - --set oap.image.tag=10.1.0 \ + --set oap.image.tag=10.3.0 \ --set oap.storageType=elasticsearch \ - --set ui.image.tag=10.1.0 + --set ui.image.tag=10.3.0 ``` To use BanyanDB as storage solution, you can try @@ -54,17 +54,17 @@ helm install "${SKYWALKING_RELEASE_NAME}" \ oci://registry-1.docker.io/apache/skywalking-helm \ --version "${SKYWALKING_RELEASE_VERSION}" \ -n "${SKYWALKING_RELEASE_NAMESPACE}" \ - --set oap.image.tag=10.1.0 \ + --set oap.image.tag=10.3.0 \ --set oap.storageType=banyandb \ - --set ui.image.tag=10.1.0 \ + --set ui.image.tag=10.3.0 \ --set elasticsearch.enabled=false \ --set banyandb.enabled=true \ - --set banyandb.image.tag=0.7.0 + --set banyandb.image.tag=0.9.0 ``` 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. -The _BanyanDB(>=0.7.0)_ is not compatible with the _BanyanDB Helm Chart(<0.3.0)_ which was referred by the _SkyWalking Helm Chart(<4.7.0)_. Meanwhile, _BanyanDB(>=0.7.0)_ requires OAP 10.1.0+. If you want to use _BanyanDB(>=0.7.0)_ as storage solution, you have to use the _BanyanDB Helm Chart(>=0.3.0)_ or _SkyWalking Helm Chart(>=4.7.0)_. +The _BanyanDB(>=0.7.0)_ is not compatible with the _BanyanDB Helm Chart(<0.3.0)_ which was referred by the _SkyWalking Helm Chart(<4.7.0)_. Meanwhile, _BanyanDB(>=0.7.0)_ requires OAP 10.3.0+. If you want to use _BanyanDB(>=0.7.0)_ as storage solution, you have to use the _BanyanDB Helm Chart(>=0.3.0)_ or _SkyWalking Helm Chart(>=4.7.0)_. ## Install released version using Apache Jfrog Helm repository (<= 4.3.0) @@ -130,13 +130,13 @@ specify those configurations, they may take no effect. here are some examples. -- Deploy SkyWalking 10.1.0 +- Deploy SkyWalking 10.3.0 ```shell script helm install "${SKYWALKING_RELEASE_NAME}" ${REPO}/skywalking -n "${SKYWALKING_RELEASE_NAMESPACE}" \ - --set oap.image.tag=10.1.0 \ + --set oap.image.tag=10.3.0 \ --set oap.storageType=elasticsearch \ - --set ui.image.tag=10.1.0 + --set ui.image.tag=10.3.0 ``` Because ElasticSearch recommends to use the corresponding Helm Chart version of the ElasticSearch version, @@ -169,9 +169,9 @@ helm -n istio-system install skywalking \ oci://ghcr.io/apache/skywalking-helm/skywalking-helm \ --version "0.0.0-b670c41d94a82ddefcf466d54bab5c492d88d772" \ -n "${SKYWALKING_RELEASE_NAMESPACE}" \ - --set oap.image.tag=10.1.0 \ + --set oap.image.tag=10.3.0 \ --set oap.storageType=elasticsearch \ - --set ui.image.tag=10.1.0 + --set ui.image.tag=10.3.0 ``` ## Install development version using source codes diff --git a/chart/skywalking/Chart.yaml b/chart/skywalking/Chart.yaml index 61a61e0..cf22e61 100644 --- a/chart/skywalking/Chart.yaml +++ b/chart/skywalking/Chart.yaml @@ -40,6 +40,6 @@ dependencies: condition: postgresql.enabled - name: skywalking-banyandb-helm alias: banyandb - version: 0.5.0 + version: 0.5.2 repository: oci://registry-1.docker.io/apache condition: banyandb.enabled From bf377fd5cfe09997a95286c4ac26da7540ccbb7d Mon Sep 17 00:00:00 2001 From: Gao Hongtao Date: Tue, 25 Nov 2025 13:07:40 +0800 Subject: [PATCH 2/2] Update README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: 吴晟 Wu Sheng --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 7443441..8240d1f 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,6 @@ helm install "${SKYWALKING_RELEASE_NAME}" \ 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. -The _BanyanDB(>=0.7.0)_ is not compatible with the _BanyanDB Helm Chart(<0.3.0)_ which was referred by the _SkyWalking Helm Chart(<4.7.0)_. Meanwhile, _BanyanDB(>=0.7.0)_ requires OAP 10.3.0+. If you want to use _BanyanDB(>=0.7.0)_ as storage solution, you have to use the _BanyanDB Helm Chart(>=0.3.0)_ or _SkyWalking Helm Chart(>=4.7.0)_. ## Install released version using Apache Jfrog Helm repository (<= 4.3.0)