Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Get supported Kubernetes versions
id: set-matrix
run: |
DEFAULT="1.35"
DEFAULT=$(make -s -C node-images/fedora print-kube-minor)
FEDORA_VERSION="44"
ALL=$(curl -s https://endoflife.date/api/kubernetes.json | \
jq -c '[.[] | select(.eol > (now | strftime("%Y-%m-%d"))) | .cycle][:3]')
Expand Down
5 changes: 4 additions & 1 deletion node-images/fedora/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: build-bootc-image build-disk-image build-disk-image-composefs clean help
.PHONY: build-bootc-image build-disk-image build-disk-image-composefs print-kube-minor clean help

KUBE_MINOR ?= 1.35
FEDORA_VERSION ?= 44
Expand Down Expand Up @@ -82,6 +82,9 @@ print-node-image:
print-node-image-composefs:
@echo $(NODE_IMAGE_COMPOSEFS)

print-kube-minor:
@echo $(KUBE_MINOR)

clean:
@echo "=== Cleaning up ==="
podman rmi -f $(BOOTC_IMAGE) $(NODE_IMAGE) 2>/dev/null || true
Expand Down