-
Notifications
You must be signed in to change notification settings - Fork 156
Jaeger Version++ && Version documentation #89
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -147,6 +147,10 @@ kubectl run jaeger-spark-dependencies --schedule="55 23 * * *" --env="STORAGE=ca | |
|
||
If you want to run the job only once and immediately then remove scheduled flag. | ||
|
||
## Docker Versions | ||
The jaeger project automatically creates new docker images with versions that mirror the release number. Feel free to pick the latest release. | ||
> A general k8 tip; it's recommended that you do not use `:latest` in production but rather pin the latest version. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. k8? Did you mean Kubernetes (k8s)? I think this tip is more general than that, so:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Correct the tags are parsed by docker, but seeing as this is a kubernetes repo and most people are deploying jaeger with kubernetes, tagging this as a kubernetes/deployment related tip would be less confusing. |
||
|
||
## Helm support | ||
A curated [Chart for Kubernetes Helm](https://github.com/kubernetes/charts/tree/master/incubator/jaeger) that adds all components required to run Jaeger. | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,10 @@ | |
# the License. | ||
# | ||
|
||
# | ||
# Check https://github.com/jaegertracing/jaeger/releases for the latest version to use | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can you please remove this? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should rather link to dockerhub but I think everybody knows what registry it is using and where to find more info |
||
# | ||
|
||
apiVersion: v1 | ||
kind: List | ||
items: | ||
|
@@ -33,7 +37,7 @@ items: | |
jaeger-infra: collector-pod | ||
spec: | ||
containers: | ||
- image: jaegertracing/jaeger-collector:1.2 | ||
- image: jaegertracing/jaeger-collector:1.4.1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The newest is 1.5.0 |
||
name: jaeger-collector | ||
command: | ||
- "/go/bin/collector-linux" | ||
|
@@ -119,7 +123,7 @@ items: | |
jaeger-infra: query-pod | ||
spec: | ||
containers: | ||
- image: jaegertracing/jaeger-query:1.2 | ||
- image: jaegertracing/jaeger-query:1.4.1 | ||
name: jaeger-query | ||
command: | ||
- "/go/bin/query-linux" | ||
|
@@ -179,7 +183,7 @@ items: | |
spec: | ||
containers: | ||
- name: agent-instance | ||
image: jaegertracing/jaeger-agent:1.2 | ||
image: jaegertracing/jaeger-agent:1.4.1 | ||
command: | ||
- "/go/bin/agent-linux" | ||
- "--config-file=/conf/agent.yaml" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -120,7 +120,8 @@ items: | |
spec: | ||
containers: | ||
- name: jaeger-cassandra-schema | ||
image: jaegertracing/jaeger-cassandra-schema:1.2 | ||
image: jaegertracing/jaeger-cassandra-schema:1.4.1 | ||
# Check https://github.com/jaegertracing/jaeger/releases for the latest version | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The comment is not needed |
||
env: | ||
- name: MODE | ||
value: "prod" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/jaeger/Jaeger
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/docker/Docker