mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Update jaeger version to 1.4.1, but use a single value for all 4 imag… (#5645)
* Update jaeger version to 1.4.1, but use a single value for all 4 images as they all need to use a single consistent version * Update chart version * Update chart version to 0.5.0
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
apiVersion: v1
|
||||
appVersion: 1.2.0
|
||||
appVersion: 1.4.1
|
||||
description: A Jaeger Helm chart for Kubernetes
|
||||
name: jaeger
|
||||
version: 0.4.1
|
||||
version: 0.5.0
|
||||
keywords:
|
||||
- jaeger
|
||||
- opentracing
|
||||
- tracing
|
||||
- instrumentation
|
||||
home: https://github.com/uber/jaeger
|
||||
home: https://jaegertracing.io
|
||||
icon: https://camo.githubusercontent.com/afa87494e0753b4b1f5719a2f35aa5263859dffb/687474703a2f2f6a61656765722e72656164746865646f63732e696f2f656e2f6c61746573742f696d616765732f6a61656765722d766563746f722e737667
|
||||
sources:
|
||||
- https://hub.docker.com/u/jaegertracing/
|
||||
|
||||
@@ -144,7 +144,6 @@ The following table lists the configurable parameters of the Jaeger chart and th
|
||||
| `agent.image` | Image for Jaeger Agent | jaegertracing/jaeger-agent |
|
||||
| `agent.pullPolicy` | Agent image pullPolicy | IfNotPresent |
|
||||
| `agent.service.loadBalancerSourceRanges` | list of IP CIDRs allowed access to load balancer (if supported) | `[]` |
|
||||
| `agent.tag` | Image tag/version | 0.6 |
|
||||
| `agent.service.annotations` | Annotations for Agent SVC | nil |
|
||||
| `agent.service.binaryPort` | jaeger.thrift over binary thrift | 6832 |
|
||||
| `agent.service.compactPort` | jaeger.thrift over compact thrift | 6831 |
|
||||
@@ -169,7 +168,6 @@ The following table lists the configurable parameters of the Jaeger chart and th
|
||||
| `collector.service.tchannelPort` | Jaeger Agent port for thrift | 14267 |
|
||||
| `collector.service.type` | Service type | ClusterIP |
|
||||
| `collector.service.zipkinPort` | Zipkin port for JSON/thrift HTTP | 9411 |
|
||||
| `collector.tag` | Image tag/version | 0.6 |
|
||||
| `elasticsearch.cluster.name` | Elasticsearch cluster name | "tracing" |
|
||||
| `elasticsearch.data.persistence.enabled` | To enable storage persistence | false (Highly recommended to enable) |
|
||||
| `elasticsearch.image.tag` | Elasticsearch image tag | "5.4" |
|
||||
@@ -188,12 +186,10 @@ 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.tag` | Image tag/version | 0.6 |
|
||||
| `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 |
|
||||
| `schema.pullPolicy` | Schema image pullPolicy | IfNotPresent |
|
||||
| `schema.tag` | Image tag/version | 0.6 |
|
||||
| `spark.enabled` | Enables the dependencies job | false |
|
||||
| `spark.image` | Image for the dependencies job | jaegertracing/spark-dependencies |
|
||||
| `spark.pullPolicy` | Image pull policy of the deps image | Always |
|
||||
@@ -212,6 +208,7 @@ The following table lists the configurable parameters of the Jaeger chart and th
|
||||
| `storage.elasticsearch.user` | Provisioned elasticsearch user | elastic |
|
||||
| `storage.elasticsearch.nodesWanOnly` | Only access specified es host | false |
|
||||
| `storage.type` | Storage type (ES or Cassandra) | cassandra |
|
||||
| `tag` | Image tag/version | 1.4.1 |
|
||||
|
||||
For more information about some of the tunable parameters that Cassandra provides, please visit the helm chart for [cassandra](https://github.com/kubernetes/charts/tree/master/incubator/cassandra) and the official [website](http://cassandra.apache.org/) at apache.org.
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ spec:
|
||||
{{ toYaml .Values.agent.nodeSelector | indent 8 }}
|
||||
containers:
|
||||
- name: {{ template "jaeger.agent.name" . }}
|
||||
image: {{ .Values.agent.image }}:{{ .Values.agent.tag }}
|
||||
image: {{ .Values.agent.image }}:{{ .Values.tag }}
|
||||
imagePullPolicy: {{ .Values.agent.pullPolicy }}
|
||||
env:
|
||||
- name: COLLECTOR_HOST_PORT
|
||||
|
||||
@@ -27,7 +27,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: {{ template "jaeger.fullname" . }}-cassandra-schema
|
||||
image: {{ .Values.schema.image }}:{{ .Values.schema.tag }}
|
||||
image: {{ .Values.schema.image }}:{{ .Values.tag }}
|
||||
imagePullPolicy: {{ .Values.schema.pullPolicy }}
|
||||
env:
|
||||
- name: CQLSH_HOST
|
||||
|
||||
@@ -33,7 +33,7 @@ spec:
|
||||
{{ toYaml .Values.collector.nodeSelector | indent 8 }}
|
||||
containers:
|
||||
- name: {{ template "jaeger.collector.name" . }}
|
||||
image: {{ .Values.collector.image }}:{{ .Values.collector.tag }}
|
||||
image: {{ .Values.collector.image }}:{{ .Values.tag }}
|
||||
imagePullPolicy: {{ .Values.collector.pullPolicy }}
|
||||
env:
|
||||
- name: SPAN_STORAGE_TYPE
|
||||
|
||||
@@ -33,7 +33,7 @@ spec:
|
||||
{{ toYaml .Values.query.nodeSelector | indent 8 }}
|
||||
containers:
|
||||
- name: {{ template "jaeger.query.name" . }}
|
||||
image: {{ .Values.query.image }}:{{ .Values.query.tag }}
|
||||
image: {{ .Values.query.image }}:{{ .Values.tag }}
|
||||
imagePullPolicy: {{ .Values.query.pullPolicy }}
|
||||
env:
|
||||
- name: SPAN_STORAGE_TYPE
|
||||
|
||||
@@ -6,6 +6,8 @@ provisionDataStore:
|
||||
cassandra: true
|
||||
elasticsearch: false
|
||||
|
||||
tag: 1.4.1
|
||||
|
||||
storage:
|
||||
# allowed values (cassandra, elasticsearch)
|
||||
type: cassandra
|
||||
@@ -46,7 +48,6 @@ cassandra:
|
||||
schema:
|
||||
annotations: {}
|
||||
image: jaegertracing/jaeger-cassandra-schema
|
||||
tag: 1.2.0
|
||||
pullPolicy: IfNotPresent
|
||||
# Acceptable values are test and prod. Default is for production use.
|
||||
mode: prod
|
||||
@@ -77,7 +78,6 @@ agent:
|
||||
enabled: true
|
||||
annotations: {}
|
||||
image: jaegertracing/jaeger-agent
|
||||
tag: 1.2.0
|
||||
pullPolicy: IfNotPresent
|
||||
collector:
|
||||
host: null
|
||||
@@ -116,7 +116,6 @@ collector:
|
||||
enabled: true
|
||||
annotations: {}
|
||||
image: jaegertracing/jaeger-collector
|
||||
tag: 1.2.0
|
||||
pullPolicy: IfNotPresent
|
||||
dnsPolicy: ClusterFirst
|
||||
cmdlineParams: {}
|
||||
@@ -149,7 +148,6 @@ query:
|
||||
enabled: true
|
||||
annotations: {}
|
||||
image: jaegertracing/jaeger-query
|
||||
tag: 1.2.0
|
||||
pullPolicy: IfNotPresent
|
||||
dnsPolicy: ClusterFirst
|
||||
cmdlineParams: {}
|
||||
|
||||
Reference in New Issue
Block a user