[incubator/jaeger] ingress path for query-ui is using basePath now (#15067)

added README description

version bumped to 0.10.5

Signed-off-by: Marcus Berndt <marcus.berndt@data-experts.de>
This commit is contained in:
Marcus Berndt
2019-06-26 08:17:16 -07:00
committed by Kubernetes Prow Robot
parent 2c65bc49c9
commit 8b064767db
3 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ apiVersion: v1
appVersion: 1.12.0
description: A Jaeger Helm chart for Kubernetes
name: jaeger
version: 0.10.4
version: 0.10.5
keywords:
- jaeger
- opentracing
+4 -1
View File
@@ -186,6 +186,9 @@ The following table lists the configurable parameters of the Jaeger chart and th
| `query.cmdlineParams` | Additional command line parameters | nil |
| `query.image` | Image for Jaeger Query UI | jaegertracing/jaeger-query |
| `query.ingress.enabled` | Allow external traffic access | false |
| `query.ingress.annotations` | Configure annotations for Ingress | {} |
| `query.ingress.hosts` | Configure host for Ingress | nil |
| `query.ingress.tls` | Configure tls for Ingress | nil |
| `query.podAnnotations` | Annotations for Query pod | nil |
| `query.pullPolicy` | Query UI image pullPolicy | IfNotPresent |
| `query.tolerations` | Node Tolerations | `[]` |
@@ -193,7 +196,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 | / |
| `query.basePath` | Base path of Query UI, used for ingress as well (if it is enabled) | / |
| `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 |
+2 -1
View File
@@ -1,5 +1,6 @@
{{- if .Values.query.ingress.enabled -}}
{{- $servicePort := .Values.query.service.queryPort -}}
{{- $basePath := .Values.query.basePath -}}
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
@@ -20,7 +21,7 @@ spec:
- host: {{ $host }}
http:
paths:
- path: /
- path: {{ $basePath }}
backend:
serviceName: {{ template "jaeger.query.name" $ }}
servicePort: {{ $servicePort }}