diff --git a/CHANGELOG.md b/CHANGELOG.md index 85b2f1291..c1a56a93b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ Changes by Version ================== +## v1.58.0 (2024-05-06) +* Final deprecation of jaeger agent. Agents injected by the operator are no longer updated. newly created or updated Jaeger CRs with an agent configuration will be rejected. ([#2497](https://github.com/jaegertracing/jaeger-operator/pull/2497), [@frzifus](https://github.com/frzifus)) +* Update compatibility matrix for v1.57.x ([#2594](https://github.com/jaegertracing/jaeger-operator/pull/2594), [@mooneeb](https://github.com/mooneeb)) + ## v1.57.0 (2024-05-06) ## v1.55.0 (2024-03-22) diff --git a/COMPATIBILITY.md b/COMPATIBILITY.md index fab4b2f03..8502df341 100644 --- a/COMPATIBILITY.md +++ b/COMPATIBILITY.md @@ -2,6 +2,7 @@ The following table shows the compatibility of Jaeger Operator with three differ | Jaeger Operator | Kubernetes | Strimzi Operator | Cert-Manager | |-----------------|-----------------|--------------------|--------------| +| v1.58.x | v1.19 to v1.28 | v0.32 | v1.6.1 | | v1.57.x | v1.19 to v1.28 | v0.32 | v1.6.1 | | v1.56.x | v1.19 to v1.28 | v0.32 | v1.6.1 | | v1.55.x | v1.19 to v1.28 | v0.32 | v1.6.1 | @@ -29,4 +30,3 @@ The following table shows the compatibility of Jaeger Operator with three differ | v1.33.x | v1.19 to v1.23 | v0.23 | v1.6.1 | | v1.32.x | v1.19 to v1.22 | v0.23 | v1.6.1 | | v1.31.x | v1.19 to v1.22 | v0.23 | v1.6.1 | -| v1.30.x | v1.19 to v1.22 | v0.23 | | diff --git a/RELEASE.md b/RELEASE.md index 825758ee7..e61a2a47c 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -66,7 +66,7 @@ The operator should be released within a week after the [Jaeger release](https:/ | Version | Release Manager | |---------| -------------------------------------------------------- | -| 1.58.0 | [Benedikt Bongartz](https://github.com/frzifus) | | 1.59.0 | [Pavol Loffay](https://github.com/pavolloffay) | | 1.60.0 | [Israel Blancas](https://github.com/iblancasa) | | 1.61.0 | [Ruben Vargas](https://github.com/rubenvp8510) | +| 1.62.0 | [Benedikt Bongartz](https://github.com/frzifus) | diff --git a/bundle/manifests/jaeger-operator.clusterserviceversion.yaml b/bundle/manifests/jaeger-operator.clusterserviceversion.yaml index 4e66675c6..1d7b181c4 100644 --- a/bundle/manifests/jaeger-operator.clusterserviceversion.yaml +++ b/bundle/manifests/jaeger-operator.clusterserviceversion.yaml @@ -19,15 +19,15 @@ metadata: categories: Logging & Tracing certified: "false" containerImage: quay.io/jaegertracing/jaeger-operator:1.56.0 - createdAt: "2024-05-04T15:16:29Z" + createdAt: "2024-06-18T07:04:32Z" description: Provides tracing, monitoring and troubleshooting for microservices-based distributed systems operators.openshift.io/infrastructure-features: '["disconnected"]' - operators.operatorframework.io/builder: operator-sdk-v1.32.0 + operators.operatorframework.io/builder: operator-sdk-v1.27.0 operators.operatorframework.io/project_layout: go.kubebuilder.io/v3 repository: https://github.com/jaegertracing/jaeger-operator support: Jaeger Community - name: jaeger-operator.v1.57.0 + name: jaeger-operator.v1.58.0 namespace: placeholder spec: apiservicedefinitions: {} @@ -374,7 +374,7 @@ spec: value: DEBUG - name: KAFKA-PROVISIONING-MINIMAL value: "true" - image: quay.io/jaegertracing/jaeger-operator:1.57.0 + image: quay.io/jaegertracing/jaeger-operator:1.58.0 livenessProbe: httpGet: path: /healthz @@ -487,11 +487,11 @@ spec: minKubeVersion: 1.19.0 provider: name: CNCF - replaces: jaeger-operator.v1.56.0 + replaces: jaeger-operator.v1.57.0 selector: matchLabels: name: jaeger-operator - version: 1.57.0 + version: 1.58.0 webhookdefinitions: - admissionReviewVersions: - v1 diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 669ffa377..5fd1309df 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -5,4 +5,4 @@ kind: Kustomization images: - name: controller newName: quay.io/jaegertracing/jaeger-operator - newTag: 1.57.0 + newTag: 1.58.0 diff --git a/config/manifests/bases/jaeger-operator.clusterserviceversion.yaml b/config/manifests/bases/jaeger-operator.clusterserviceversion.yaml index ef210296d..7d983d7e3 100644 --- a/config/manifests/bases/jaeger-operator.clusterserviceversion.yaml +++ b/config/manifests/bases/jaeger-operator.clusterserviceversion.yaml @@ -125,7 +125,7 @@ spec: minKubeVersion: 1.19.0 provider: name: CNCF - replaces: jaeger-operator.v1.56.0 + replaces: jaeger-operator.v1.58.0 selector: matchLabels: name: jaeger-operator diff --git a/examples/all-in-one-with-options.yaml b/examples/all-in-one-with-options.yaml index 5d30eddec..bd4314602 100644 --- a/examples/all-in-one-with-options.yaml +++ b/examples/all-in-one-with-options.yaml @@ -5,7 +5,7 @@ metadata: spec: strategy: allInOne allInOne: - image: jaegertracing/all-in-one:1.57.0 + image: jaegertracing/all-in-one:1.58.0 options: log-level: debug query: diff --git a/examples/operator-with-tracing.yaml b/examples/operator-with-tracing.yaml index 0d6e6937d..0116ddc8a 100644 --- a/examples/operator-with-tracing.yaml +++ b/examples/operator-with-tracing.yaml @@ -17,7 +17,7 @@ spec: serviceAccountName: jaeger-operator containers: - name: jaeger-operator - image: jaegertracing/jaeger-operator:1.57.0 + image: jaegertracing/jaeger-operator:1.58.0 ports: - containerPort: 8383 name: http-metrics @@ -41,7 +41,7 @@ spec: - name: OPERATOR_NAME value: "jaeger-operator" - name: jaeger-agent - image: jaegertracing/jaeger-agent:1.57.0 + image: jaegertracing/jaeger-agent:1.58.0 env: - name: POD_NAMESPACE valueFrom: diff --git a/examples/statefulset-manual-sidecar.yaml b/examples/statefulset-manual-sidecar.yaml index b17f344ce..76cfd47ae 100644 --- a/examples/statefulset-manual-sidecar.yaml +++ b/examples/statefulset-manual-sidecar.yaml @@ -23,7 +23,7 @@ spec: - containerPort: 8080 protocol: TCP - name: jaeger-agent - image: jaegertracing/jaeger-agent:1.57.0 + image: jaegertracing/jaeger-agent:1.58.0 imagePullPolicy: IfNotPresent ports: - containerPort: 5775 diff --git a/examples/tracegen.yaml b/examples/tracegen.yaml index b4a503b33..ba2138b6b 100644 --- a/examples/tracegen.yaml +++ b/examples/tracegen.yaml @@ -20,7 +20,7 @@ spec: spec: containers: - name: tracegen - image: jaegertracing/jaeger-tracegen:1.57.0 + image: jaegertracing/jaeger-tracegen:1.58.0 args: - -duration=30m - -workers=10 diff --git a/versions.txt b/versions.txt index f4542897b..b6dd05d35 100644 --- a/versions.txt +++ b/versions.txt @@ -1,7 +1,7 @@ # The Jaeger version to use by default. This is updated manually. Make sure to update the changelog # and add an upgrade procedure (pkg/upgrade) for the new version. -jaeger=1.57.0 +jaeger=1.58.0 # DO NOT EDIT the next value, it is updated automatically during the release. # Represents the current (latest) release of the Jaeger Operator. -operator=1.57.0 +operator=1.58.0