chore(chart-deps): update otel-operator to version 0.120.2 - #3495
Draft
svcAPLBot wants to merge 1 commit into
Draft
chore(chart-deps): update otel-operator to version 0.120.2#3495svcAPLBot wants to merge 1 commit into
svcAPLBot wants to merge 1 commit into
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the vendored opentelemetry-operator Helm chart dependency to chart version 0.120.2, along with associated chart metadata, default image tags, RBAC, tests, schema, and CRDs.
Changes:
- Bump
opentelemetry-operatorchart version to0.120.2and align dependency references. - Update default collector image tag / reported app version to
0.156.0. - Incorporate upstream chart deltas: new schema fields, RBAC rules, Helm test script tweaks, CRD updates, and a CI values fixture for CRD annotations.
Reviewed changes
Copilot reviewed 11 out of 11 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| charts/otel-operator/values.yaml | Updates default collector image tag and adds crds.annotations values. |
| charts/otel-operator/values.schema.json | Extends schema for a new feature gate key and crds.annotations. |
| charts/otel-operator/templates/tests/test-service-connection.yaml | Adjusts Helm test pod names and adds retry logic for service checks. |
| charts/otel-operator/templates/tests/test-certmanager-connection.yaml | Updates cert-manager service DNS target and adds retry logic. |
| charts/otel-operator/templates/clusterrole.yaml | Expands ClusterRole rules (including OLM CSV permissions and new status subresource). |
| charts/otel-operator/crds/crd-opentelemetrycollector.yaml | Updates CRD schema (status fields). |
| charts/otel-operator/crds/crd-opentelemetry.io_opampbridges.yaml | Updates CRD schema (TLS config fields). |
| charts/otel-operator/ci/crds-annotations-values.yaml | Adds CI values fixture intended to validate CRD annotation behavior. |
| charts/otel-operator/Chart.yaml | Bumps chart version and appVersion. |
| chart/chart-index/Chart.yaml | Updates the dependency version for otel-operator to 0.120.2. |
| apps.yaml | Updates displayed app version for the otel app entry. |
Comment on lines
350
to
+354
| crds: | ||
| create: true | ||
| # Annotations to add to all CRDs managed by this chart. | ||
| # For example, "example.com/managed-by: opentelemetry-operator-chart". | ||
| annotations: {} |
Comment on lines
+213
to
+217
| verbs: | ||
| - get | ||
| - list | ||
| - patch | ||
| - update |
Comment on lines
+27
to
+37
| i=0 | ||
| while [ "$i" -lt 30 ]; do | ||
| wget_output=$(wget -q "$MANAGER_METRICS_SERVICE_CLUSTERIP:$MANAGER_METRICS_SERVICE_PORT" 2>&1 || true) | ||
| if [ "$wget_output" = "wget: server returned error: HTTP/1.0 400 Bad Request" ]; then | ||
| exit 0 | ||
| fi | ||
| i=$((i + 1)) | ||
| sleep 2 | ||
| done | ||
| echo "$wget_output" | ||
| exit 1 |
Comment on lines
+86
to
+96
| i=0 | ||
| while [ "$i" -lt 30 ]; do | ||
| wget_output=$(wget -q "$WEBHOOK_SERVICE_CLUSTERIP:$WEBHOOK_SERVICE_PORT" 2>&1 || true) | ||
| if [ "$wget_output" = "wget: server returned error: HTTP/1.0 400 Bad Request" ]; then | ||
| exit 0 | ||
| fi | ||
| i=$((i + 1)) | ||
| sleep 2 | ||
| done | ||
| echo "$wget_output" | ||
| exit 1 |
Comment on lines
+27
to
+37
| i=0 | ||
| while [ "$i" -lt 30 ]; do | ||
| wget_output=$(wget -q "$CERT_MANAGER_CLUSTERIP:$CERT_MANAGER_PORT" 2>&1 || true) | ||
| if [ "$wget_output" = "wget: server returned error: HTTP/1.0 400 Bad Request" ]; then | ||
| exit 0 | ||
| fi | ||
| i=$((i + 1)) | ||
| sleep 2 | ||
| done | ||
| echo "$wget_output" | ||
| exit 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR updates the dependency opentelemetry-operator to version 0.120.2.