mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[incubator/jaeger] Add basePath option for Jaeger. Based on https://github.com/helm/charts/pull/7490. (#10414)
Signed-off-by: Francois JACQUES <fjacques@murex.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
c73f162178
commit
63d5b60b13
@@ -2,7 +2,7 @@ apiVersion: v1
|
||||
appVersion: 1.8.2
|
||||
description: A Jaeger Helm chart for Kubernetes
|
||||
name: jaeger
|
||||
version: 0.8.0
|
||||
version: 0.8.1
|
||||
keywords:
|
||||
- jaeger
|
||||
- opentracing
|
||||
|
||||
@@ -190,6 +190,7 @@ The following table lists the configurable parameters of the Jaeger chart and th
|
||||
| `query.service.queryPort` | External accessible port | 80 |
|
||||
| `query.service.targetPort` | Internal Query UI port | 16686 |
|
||||
| `query.service.type` | Service type | ClusterIP |
|
||||
| `query.basePath` | Base path of Query UI | / |
|
||||
| `schema.annotations` | Annotations for the schema job | nil |
|
||||
| `schema.image` | Image to setup cassandra schema | jaegertracing/jaeger-cassandra-schema |
|
||||
| `schema.mode` | Schema mode (prod or test) | prod |
|
||||
|
||||
@@ -27,6 +27,7 @@ data:
|
||||
span-storage.type: {{ .Values.storage.type | quote }}
|
||||
query.health-check-http-port: {{ .Values.query.healthCheckPort | quote }}
|
||||
query.port: {{ .Values.query.service.targetPort | quote }}
|
||||
query.base-path: {{ .Values.query.basePath | quote }}
|
||||
# Not implemented
|
||||
# cassandra.archive.connections-per-host:
|
||||
# cassandra.archive.keyspace:
|
||||
|
||||
@@ -93,6 +93,11 @@ spec:
|
||||
configMapKeyRef:
|
||||
name: {{ template "jaeger.fullname" . }}
|
||||
key: query.health-check-http-port
|
||||
- name: QUERY_BASE_PATH
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: {{ template "jaeger.fullname" . }}
|
||||
key: query.base-path
|
||||
ports:
|
||||
- containerPort: {{ .Values.query.service.targetPort }}
|
||||
protocol: TCP
|
||||
|
||||
@@ -160,6 +160,7 @@ query:
|
||||
dnsPolicy: ClusterFirst
|
||||
cmdlineParams: {}
|
||||
healthCheckPort: 16687
|
||||
basePath: /
|
||||
replicaCount: 1
|
||||
service:
|
||||
annotations: {}
|
||||
|
||||
Reference in New Issue
Block a user