diff --git a/README.md b/README.md index 9f44550d7e06fc5550608ae31de51ea6b535e54b..d8593a7d1f3b3478ad0142d21616d345f8dd899a 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,50 @@ Apache SkyWalking Kubernetes To install and configure skywalking in a Kubernetes cluster, follow these instructions. +## Documentation +#### Deploy SkyWalking and Elasticsearch (default) + +```shell script +$ cd chart + +$ helm add stable https://kubernetes-charts.storage.googleapis.com/ + +$ helm dep up + +$ helm install skywalking -n +``` + +#### Only deploy SkyWalking ,and use existing Elasticsearch +If not want to deploy a new elasticsearch cluster, this way can be solved. + +Only need to close the elasticsearch deployed by chart default and configure the existing elasticsearch connection method. + +```shell script +$ cd chart + +$ helm add stable https://kubernetes-charts.storage.googleapis.com/ + +$ helm dep up + +$ helm install skywalking -n \ + --set elasticsearch.enabled=false \ + --set elasticsearch.config.host= \ + --set elasticsearch.config.port.http= +``` + ## Structure of repository ### helm-chart This is recommended as the best practice to deploy SkyWalking backend stack into kubernetes cluster. +#### release chart table +| SkyWalking version | Chart version | +| ------------------ | ------------- | +| 6.5.0 | 1.0.0 | + +Note: The source code for the release chart is located in the chart folder in the master branch. + #### old chart position table | SkyWalking version | Chart position | @@ -22,9 +60,5 @@ This is recommended as the best practice to deploy SkyWalking backend stack into Note: The source code for old charts are in the **legacy-helm-chart** branch. -#### release chart table -| SkyWalking version | Chart version | -| ------------------ | ------------- | -| 6.5.0 | 1.0.0 | - -Note: The source code for the release chart is located in the chart folder in the master branch. \ No newline at end of file +# LICENSE +Apache 2.0