Skip to content

Commit

Permalink
ci(check-dependencies): use GKE Rapid channel (#3406)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrzej-stencel authored Nov 21, 2023
1 parent 1d09197 commit b85f04d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/check_dependencies/gke.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ def get_supported_releases(html_calendar):
supported_releases = []
for index, row in pd_data.iterrows():
end_of_life_date = parse_gke_dates(row["End of life"])
regular_release_date = parse_gke_dates(row["Regular available"])
if regular_release_date < today and today < end_of_life_date:
available_date = parse_gke_dates(row["Rapid available"])
if available_date < today and today < end_of_life_date:
supported_releases.append(row["Kubernetes version"])
return supported_releases

Expand Down

0 comments on commit b85f04d

Please sign in to comment.