Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
Signed-off-by: Pavel Nikolov <pavelnikolov@users.noreply.github.com>
  • Loading branch information
pavelnikolov authored Jan 22, 2024
2 parents afc57a5 + f0594b7 commit 7166d75
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 6 deletions.
1 change: 1 addition & 0 deletions charts/jaeger-operator/COMPATIBILITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ The following table shows the compatibility of `Jaeger Operator helm chart` with

| Chart version | Jaeger Operator | Kubernetes | Strimzi Operator | Cert-Manager |
|---------------------------|-----------------|-----------------|--------------------|--------------|
| 2.50.0 | v1.52.x | v1.19 to v1.28 | v0.32 | v1.6.1+ |
| 2.49.0 | v1.49.x | v1.19 to v1.28 | v0.32 | v1.6.1+ |
| 2.47.0 | v1.47.x | v1.19 to v1.26 | v0.23 | v1.6.1+ |
| 2.46.0 | v1.46.x | v1.19 to v1.26 | v0.23 | v1.6.1+ |
Expand Down
4 changes: 2 additions & 2 deletions charts/jaeger-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v1
description: jaeger-operator Helm chart for Kubernetes
name: jaeger-operator
version: 2.49.0
appVersion: 1.49.0
version: 2.50.1
appVersion: 1.52.0
home: https://www.jaegertracing.io/
icon: https://www.jaegertracing.io/img/jaeger-icon-reverse-color.svg
sources:
Expand Down
4 changes: 2 additions & 2 deletions charts/jaeger-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ The command removes all the Kubernetes components associated with the chart and
The following table lists the configurable parameters of the jaeger-operator chart and their default values.

| Parameter | Description | Default |
| :------------------------- | :---------------------------------------------------------------------------------------------------------- | :------------------------------ |
| :------------------------- | :---------------------------------------------------------------------------------------------------------- |:--------------------------------|
| `serviceExtraLabels` | Additional labels to jaeger-operator service | `{}` |
| `extraLabels` | Additional labels to jaeger-operator deployment | `{}` |
| `image.repository` | Controller container image repository | `jaegertracing/jaeger-operator` |
| `image.tag` | Controller container image tag | `1.49.0` |
| `image.tag` | Controller container image tag | `1.52.0` |
| `image.pullPolicy` | Controller container image pull policy | `IfNotPresent` |
| `jaeger.create` | Jaeger instance will be created | `false` |
| `jaeger.spec` | Jaeger instance specification | `{}` |
Expand Down
2 changes: 1 addition & 1 deletion charts/jaeger-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

image:
repository: jaegertracing/jaeger-operator
tag: 1.49.0
tag: 1.52.0
pullPolicy: IfNotPresent
imagePullSecrets: []

Expand Down
2 changes: 1 addition & 1 deletion charts/jaeger/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ appVersion: 1.53.0
description: A Jaeger Helm chart for Kubernetes
name: jaeger
type: application
version: 0.74.0
version: 0.74.1
# CronJobs require v1.21
kubeVersion: ">= 1.21-0"
keywords:
Expand Down
4 changes: 4 additions & 0 deletions charts/jaeger/templates/ingester-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- if .Values.ingester.initContainers }}
initContainers:
{{- toYaml .Values.ingester.initContainers | nindent 8 }}
{{- end}}
containers:
- name: {{ include "jaeger.fullname" . }}-ingester
securityContext:
Expand Down
4 changes: 4 additions & 0 deletions charts/jaeger/templates/query-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ spec:
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- if .Values.query.initContainers }}
initContainers:
{{- toYaml .Values.query.initContainers | nindent 8 }}
{{- end}}
containers:
- name: {{ template "jaeger.query.name" . }}
securityContext:
Expand Down
2 changes: 2 additions & 0 deletions charts/jaeger/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,7 @@ ingester:
extraConfigmapMounts: []
extraEnv: []
envFrom: []
initContainers: []

serviceMonitor:
enabled: false
Expand Down Expand Up @@ -533,6 +534,7 @@ collector:
query:
enabled: true
basePath: /
initContainers: []
oAuthSidecar:
enabled: false
resources:
Expand Down

0 comments on commit 7166d75

Please sign in to comment.