[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:
Bob Potter
2018-04-23 16:44:00 -07:00
committed by k8s-ci-robot
parent 78ee4ba154
commit af9915e3f6
5 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -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
+1
View File
@@ -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:
+1
View File
@@ -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: