Skip to content

Commit

Permalink
update doc (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
innerpeacez authored Jun 22, 2020
1 parent 00eab2f commit 25ca1ba
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 13 deletions.
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ Changes by Version
==================
Release Notes.

3.0.0
------------------

#### Features
- Support SkyWalking 8.0.1

##### Note:
- 8.0.0 image is not suitable as chart image, ISSUE: https://github.com/apache/skywalking/issues/4953

2.0.0
------------------

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ $ helm install <release_name> skywalking -n <namespace> \
$ helm dep up skywalking

$ helm install <release_name> skywalking -n <namespace> \
--values ./skywalking/values-es6.yaml
--values ./skywalking/values-es6.yaml \
--set elasticsearch.enabled=false \
--set elasticsearch.config.host=<es_host> \
--set elasticsearch.config.port.http=<es_port> \
Expand All @@ -80,6 +80,7 @@ This is recommended as the best practice to deploy SkyWalking backend stack into
| 6.5.0 | 1.0.0 |
| 6.6.0 | 1.1.0 |
| 7.0.0 | 2.0.0 |
| 8.0.1 | 3.0.0 |

Please head to the [releases page](http://skywalking.apache.org/downloads/) to download a release of Apache SkyWalking.

Expand Down
4 changes: 2 additions & 2 deletions chart/skywalking/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
apiVersion: v2
name: skywalking
home: https://skywalking.apache.org
version: 2.0.0
appVersion: 7.0.0
version: 3.0.0
appVersion: 8.0.1
description: Apache SkyWalking APM System
icon: https://raw.githubusercontent.com/apache/skywalking-kubernetes/master/logo/sw-logo-for-chart.jpg
sources:
Expand Down
2 changes: 1 addition & 1 deletion chart/skywalking/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.
Expand the name of the chart.
*/}}
{{- define "skywalking.name" -}}
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
{{- default .Release.Name | trunc 63 | trimSuffix "-" -}}
{{- end -}}

{{/*
Expand Down
2 changes: 1 addition & 1 deletion chart/skywalking/templates/es-init.job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ spec:
- name: SW_STORAGE_ES_CLUSTER_NODES
{{- if .Values.elasticsearch.enabled }}
value: "{{ .Values.elasticsearch.clusterName }}-{{ .Values.elasticsearch.nodeGroup }}:{{ .Values.elasticsearch.httpPort }}"
{{- else }}
{{- else }}
value: "{{ .Values.elasticsearch.config.host }}:{{ .Values.elasticsearch.config.port.http }}"
{{- end }}
{{- if not .Values.elasticsearch.enabled }}
Expand Down
9 changes: 5 additions & 4 deletions chart/skywalking/values-es6.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ serviceAccounts:
oap:

oap:
name: skywalking-oap
name: oap
image:
repository: apache/skywalking-oap-server
tag: 7.0.0-es6
tag: 8.0.1-es6
pullPolicy: IfNotPresent
storageType: elasticsearch
ports:
Expand Down Expand Up @@ -58,11 +58,11 @@ oap:
# more env, please refer to https://hub.docker.com/r/apache/skywalking-oap-server
# or https://github.com/apache/skywalking-docker/blob/master/6/6.4/oap/README.md#sw_telemetry
ui:
name: skywalking-ui
name: ui
replicas: 1
image:
repository: apache/skywalking-ui
tag: 7.0.0
tag: 8.0.1
pullPolicy: IfNotPresent
# podAnnotations:
# example: oap-foo
Expand Down Expand Up @@ -349,3 +349,4 @@ elasticsearch:
keystore: []

nameOverride: ""
fullnameOverride: ""
9 changes: 5 additions & 4 deletions chart/skywalking/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ serviceAccounts:
oap:

oap:
name: skywalking-oap
name: oap
image:
repository: apache/skywalking-oap-server
tag: 7.0.0-es7
tag: 8.0.1-es7
pullPolicy: IfNotPresent
storageType: elasticsearch7
ports:
Expand Down Expand Up @@ -58,11 +58,11 @@ oap:
# more env, please refer to https://hub.docker.com/r/apache/skywalking-oap-server
# or https://github.com/apache/skywalking-docker/blob/master/6/6.4/oap/README.md#sw_telemetry
ui:
name: skywalking-ui
name: ui
replicas: 1
image:
repository: apache/skywalking-ui
tag: 7.0.0
tag: 8.0.1
pullPolicy: IfNotPresent
# podAnnotations:
# example: oap-foo
Expand Down Expand Up @@ -349,3 +349,4 @@ elasticsearch:
keystore: []

nameOverride: ""
fullnameOverride: ""

0 comments on commit 25ca1ba

Please sign in to comment.