You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2019/12/12 06:36:00 UTC

[skywalking-kubernetes] branch master updated: Update README.md

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-kubernetes.git


The following commit(s) were added to refs/heads/master by this push:
     new 0b2382f  Update README.md
0b2382f is described below

commit 0b2382fece91dd75f62e228cd775159f69258849
Author: 吴晟 Wu Sheng <wu...@foxmail.com>
AuthorDate: Thu Dec 12 14:35:55 2019 +0800

    Update README.md
---
 README.md | 46 ++++++++++++++++++++++++++++++++++++++++------
 1 file changed, 40 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index 9f44550..d8593a7 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 <release_name> skywalking -n <namespace>
+```
+
+#### 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 <release_name> skywalking -n <namespace> \
+        --set elasticsearch.enabled=false \
+        --set elasticsearch.config.host=<es_host> \
+        --set elasticsearch.config.port.http=<es_port>
+```
+
 ## 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