mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[incubator/jaeger] support ES_NODES_WAN_ONLY for spark job (#4877)
* [incubator/jaeger] support ES_NODES_WAN_ONLY for spark job Setting this is necessary for the spark job to work against AWS elasticsearch clusters. https://github.com/jaegertracing/spark-dependencies#elasticsearch * [jaeger/incubator] bump version to 0.3.11 * Update common-cm.yaml
This commit is contained in:
@@ -2,7 +2,7 @@ apiVersion: v1
|
||||
appVersion: 1.2.0
|
||||
description: A Jaeger Helm chart for Kubernetes
|
||||
name: jaeger
|
||||
version: 0.3.10
|
||||
version: 0.3.11
|
||||
keywords:
|
||||
- jaeger
|
||||
- opentracing
|
||||
|
||||
@@ -199,6 +199,7 @@ The following table lists the configurable parameters of the Jaeger chart and th
|
||||
| `storage.elasticsearch.port` | Provisioned elasticsearch port | 9200 |
|
||||
| `storage.elasticsearch.scheme` | Provisioned elasticsearch scheme | http |
|
||||
| `storage.elasticsearch.user` | Provisioned elasticsearch user | elastic |
|
||||
| `storage.elasticsearch.nodesWanOnly` | Only access specified es host | false |
|
||||
| `storage.type` | Storage type (ES or Cassandra) | cassandra |
|
||||
|------------------------------------------|-------------------------------------|----------------------------------------|
|
||||
|
||||
|
||||
@@ -22,6 +22,7 @@ data:
|
||||
es.password: {{ .Values.storage.elasticsearch.password }}
|
||||
es.server-urls: {{ template "elasticsearch.client.url" . }}
|
||||
es.username: {{ .Values.storage.elasticsearch.user }}
|
||||
es.nodes-wan-only: {{ .Values.storage.elasticsearch.nodesWanOnly | quote }}
|
||||
hotrod.agent-host: {{ template "jaeger.hotrod.tracing.host" . }}
|
||||
hotrod.agent-port: {{ .Values.hotrod.tracing.port | quote }}
|
||||
span-storage.type: {{ .Values.storage.type | quote }}
|
||||
|
||||
@@ -62,6 +62,11 @@ spec:
|
||||
configMapKeyRef:
|
||||
name: {{ template "jaeger.fullname" . }}
|
||||
key: es.server-urls
|
||||
- name: ES_NODES_WAN_ONLY
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: {{ template "jaeger.fullname" . }}
|
||||
key: es.nodes-wan-only
|
||||
- name: ES_PASSWORD
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
||||
@@ -20,6 +20,7 @@ storage:
|
||||
port: 9200
|
||||
user: elastic
|
||||
password: changeme
|
||||
nodesWanOnly: false
|
||||
|
||||
# Begin: Override values on the Cassandra subchart to customize for Jaeger
|
||||
cassandra:
|
||||
|
||||
Reference in New Issue
Block a user