You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Configure Jaeger to connect to Elasticsearch using the native config syntax.
61
61
62
+
Adding memory to ANY storage will cause jeager to use memory. To completely override and NOT use memory please use 'userconfig' to completely override if using external storage
63
+
64
+
This chart defaults to using memory
65
+
66
+
You can use an internal provisioned Elasticsearch by setting ```provisionDataStore.elasticsearch=true```
67
+
68
+
The internal elasticsearch is configured to __NOT__ require a password or username.
69
+
70
+
You can also set up to use an external elasticsearch by changing the ```server_urls``` value.
71
+
62
72
**values.yaml Example:**
63
73
```yaml
64
74
# Use the provisioned Elasticsearch subchart
@@ -73,17 +83,22 @@ config:
73
83
primary_store:
74
84
elasticsearch:
75
85
server_urls: ["http://elasticsearch:9200"]
76
-
username: elastic
77
-
password: changeme
86
+
auth:
87
+
basic:
88
+
username: elastic
89
+
password: changeme
78
90
```
79
91
80
92
**Running Maintenance Jobs:**
81
-
To run Index Cleaner or Rollover jobs, enable them. They auto-configure when `provisionDataStore.elasticsearch` is enabled:
93
+
To run Index Cleaner or Rollover jobs, enable them. They require configuration if using external by setting ```storage.type=elasticsearch``` and adjusting ```storage.elasticsearch``` values. See that section in values.yaml for more details.
94
+
82
95
```yaml
83
96
esIndexCleaner:
84
97
enabled: true
85
98
```
86
99
100
+
* es-rollover __requires__ elasticsearch to be running __BEFORE__ install so the hook job can run.
101
+
87
102
### 3. Cassandra
88
103
This chart does not provision a Cassandra cluster. To use Cassandra storage, you must provide your own Cassandra instance and configure Jaeger via the native config syntax:
89
104
@@ -110,14 +125,16 @@ config:
110
125
111
126
### 4. Spark Dependencies
112
127
113
-
To run the Spark dependencies job (for dependency links graph):
128
+
To run the Spark dependencies job (for dependency links graph) set ```spark.enabled=true```
129
+
130
+
Below is an example of how to set overrides. Please see the values.yaml for more examples:
131
+
132
+
The values are populated under ```storage.elasticsearch``` Please see comments in values.yaml for more details.
0 commit comments