Skip to content

Commit

Permalink
Bump up OAP and UI to 10.0.0 (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanahmily authored May 21, 2024
1 parent ea4091c commit 8b7d835
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Release Notes.
- Integrate BanyanDB as storage solution.
- Bump up swck to v0.9.0.
- Bump up BanyanDB Helm version to 0.2.0.
- Bump up OAP and UI to 10.0.0.

4.5.0
------------------
Expand Down
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | `9.6.0` |
| `oap.image.tag` | the OAP docker image tag | `10.0.0` |
| `oap.storageType` | the storage type of the OAP | `elasticsearch`, `postgresql`, `banyandb`, etc. |
| `ui.image.tag` | the UI docker image tag | `9.6.0` |
| `ui.image.tag` | the UI docker image tag | `10.0.0` |

You can set these required values via command line (e.g. `--set oap.image.tag=9.2.0 --set oap.storageType=elasticsearch`),
You can set these required values via command line (e.g. `--set oap.image.tag=10.0.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 <filename>` or `--values=<filename>` to set them.

Expand All @@ -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=9.2.0 \
--set oap.image.tag=10.0.0 \
--set oap.storageType=elasticsearch \
--set ui.image.tag=9.2.0
--set ui.image.tag=10.0.0
```

## Install released version using Apache Jfrog Helm repository (<= 4.3.0)
Expand Down Expand Up @@ -75,9 +75,9 @@ cd skywalking-helm
helm install "${SKYWALKING_RELEASE_NAME}" \
${REPO}/skywalking \
-n "${SKYWALKING_RELEASE_NAMESPACE}" \
--set oap.image.tag=9.5.0 \
--set oap.image.tag=10.0.0 \
--set oap.storageType=banyandb \
--set ui.image.tag=9.5.0 \
--set ui.image.tag=10.0.0 \
--set elasticsearch.enabled=false \
--set banyandb.enabled=true
```
Expand Down Expand Up @@ -127,13 +127,13 @@ specify those configurations, they may take no effect.

here are some examples.

- Deploy SkyWalking 9.2.0
- Deploy SkyWalking 10.0.0

```shell script
helm install "${SKYWALKING_RELEASE_NAME}" ${REPO}/skywalking -n "${SKYWALKING_RELEASE_NAMESPACE}" \
--set oap.image.tag=9.2.0 \
--set oap.image.tag=10.0.0 \
--set oap.storageType=elasticsearch \
--set ui.image.tag=9.2.0
--set ui.image.tag=10.0.0
```

Because ElasticSearch recommends to use the corresponding Helm Chart version of the ElasticSearch version,
Expand Down Expand Up @@ -165,9 +165,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=9.2.0 \
--set oap.image.tag=10.0.0 \
--set oap.storageType=elasticsearch \
--set ui.image.tag=9.2.0
--set ui.image.tag=10.0.0
```

## Install development version using source codes
Expand Down
4 changes: 2 additions & 2 deletions chart/skywalking/values-my-es.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@

oap:
image:
tag: 9.6.0
tag: 10.0.0
storageType: elasticsearch

ui:
image:
tag: 9.6.0
tag: 10.0.0

elasticsearch:
enabled: false
Expand Down

0 comments on commit 8b7d835

Please sign in to comment.