Skip to content

Commit

Permalink
chore(dependency_checker): ignore kube-prometheus-stack
Browse files Browse the repository at this point in the history
  • Loading branch information
swiatekm committed Nov 8, 2023
1 parent ec3d44b commit ca28f7b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ci/check_dependencies/helm_charts.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
VERSION_IDX = 0
CREATED_IDX = 1

# We ignore Prometheus here, as we're locked to whatever version is CRD-compatible with OpenShift
DEPENDENCIES_TO_IGNORE=("kube-prometheus-stack")

def get_info():
cache_file = "cache/Chart.yaml"
Expand All @@ -20,6 +22,8 @@ def get_info():
deps = chart_yaml["dependencies"]

for dep in deps:
if dep["name"] in DEPENDENCIES_TO_IGNORE:
continue
index_page = "{}/{}".format(dep["repository"], "index.yaml")
cache_file = "{}/{}.yaml".format("cache", dep["name"])
current_version = dep["version"]
Expand Down

0 comments on commit ca28f7b

Please sign in to comment.