Skip to content

Commit 9e576be

Browse files
committed
chore(script): Skip Vector bumps
These are currently tied to the vector version shipped with products via docker-images. Hopefully we can move to OTLP for the vector sidecar -> vector-aggregator.
1 parent ed73a38 commit 9e576be

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.scripts/update_helm_charts.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,16 @@ def process_yaml_files(top_dir: str) -> None:
7979
if not repo_name or not repo_url:
8080
continue
8181

82+
# At this point, it appears to be a Helm Chart manifest.
83+
84+
# Skip Vector, as we currently keep it tied to the version that the product sidecars use.abs
85+
# Looking forward to swapping the transport with OTLP.
86+
if chart_name == "vector":
87+
raise Exception(
88+
"Skipping vector. Ensure it is at the same version as the product sidecars"
89+
)
90+
continue
91+
8292
chart_version = first_doc["version"]
8393
# Skip chart versions which seem to be templated.
8494
if chart_version.startswith("{{"):

0 commit comments

Comments
 (0)