Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
Signed-off-by: mehul <[email protected]>
  • Loading branch information
hellspawn679 committed Nov 19, 2024
1 parent 8700626 commit 37eb6ec
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions charts/jaeger/README-v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ Jaeger’s all-in-one mode combines the Jaeger Agent, Collector, and Query into

```bash
helm install <chart_name> charts/jaeger \
--set provisionDataStore.cassandra=false \
--set storage.type=memory \
--set allInOne.enabled=true \
--set agent.enabled=false \
--set collector.enabled=false \
--set query.enabled=false \
--set-file userconfig=path/to/configfile.yaml # Optional: user-specific config
```

Expand All @@ -46,14 +40,17 @@ This mode configures Jaeger to store trace data in an Elasticsearch backend, sui

```bash
helm install <chart_name> charts/jaeger \
--set provisionDataStore.cassandra=false \
--set provisionDataStore.elasticsearch=true \
--set allInOne.enabled=false \
--set storage.type=elasticsearch \
--set elasticsearch.master.masterOnly=false \
--set elasticsearch.master.replicaCount=1 \
--set elasticsearch.data.replicaCount=0 \
--set elasticsearch.coordinating.replicaCount=0 \
--set elasticsearch.ingest.replicaCount=0 \
--set elasticsearch.ingest.replicaCount=0
--set agent.enabled=true \
--set collector.enabled=true \
--set query.enabled=true
--set-file userconfig=path/to/configfile.yaml # Optional: user-specific config
```

Expand All @@ -62,9 +59,12 @@ This mode configures Jaeger to store trace data in an Elasticsearch backend, sui

```bash
helm install <chart_name> charts/jaeger \
--set provisionDataStore.cassandra=false \
--set provisionDataStore.elasticsearch=true \
--set allInOne.enabled=false \
--set storage.type=elasticsearch \
--set agent.enabled=true \
--set collector.enabled=true \
--set query.enabled=true
--set-file userconfig=path/to/configfile.yaml # Optional: user-specific config
```

Expand Down

0 comments on commit 37eb6ec

Please sign in to comment.