Skip to content

Commit c87f910

Browse files
committed
ci: add talos installation test
Signed-off-by: zhangzujian <[email protected]>
1 parent 8fc3031 commit c87f910

File tree

2 files changed

+49
-1
lines changed

2 files changed

+49
-1
lines changed

.github/workflows/build-x86-image.yaml

+45
Original file line numberDiff line numberDiff line change
@@ -2039,6 +2039,50 @@ jobs:
20392039
- name: Cleanup
20402040
run: timeout -k 10 180 sh -x dist/images/cleanup.sh
20412041

2042+
talos-installation-test:
2043+
name: Talos Installation Test
2044+
needs: build-kube-ovn
2045+
runs-on: ubuntu-24.04
2046+
timeout-minutes: 15
2047+
steps:
2048+
- uses: jlumbroso/[email protected]
2049+
with:
2050+
android: true
2051+
dotnet: true
2052+
haskell: true
2053+
docker-images: false
2054+
large-packages: false
2055+
tool-cache: false
2056+
swap-storage: false
2057+
2058+
- uses: actions/checkout@v4
2059+
2060+
- name: Install talosctl
2061+
run: curl -sL https://talos.dev/install | sh
2062+
2063+
- name: Download image
2064+
uses: actions/download-artifact@v4
2065+
with:
2066+
name: kube-ovn
2067+
2068+
- name: Load image
2069+
run: docker load --input kube-ovn.tar
2070+
2071+
- name: Create Talos cluster
2072+
run: |
2073+
make talos-init
2074+
2075+
- name: Install Kube-OVN
2076+
id: install
2077+
run: make talos-install
2078+
2079+
- name: Check kube ovn pod restarts
2080+
if: ${{ success() || (failure() && steps.install.conclusion == 'failure') }}
2081+
run: make check-kube-ovn-pod-restarts
2082+
2083+
- name: Cleanup
2084+
run: timeout -k 10 180 sh -x dist/images/cleanup.sh
2085+
20422086
cilium-chaining-e2e:
20432087
name: Cilium Chaining E2E
20442088
needs:
@@ -3308,6 +3352,7 @@ jobs:
33083352
- underlay-logical-gateway-installation-test
33093353
- chart-test
33103354
- installation-compatibility-test
3355+
- talos-installation-test
33113356
- no-ovn-lb-test
33123357
- no-np-test
33133358
- cilium-chaining-e2e

talos.mk

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ talos-registry-mirror:
1919
fi
2020

2121
.PHONY: talos-prepare-images
22-
talos-prepare-images: talos-registry-mirror
22+
talos-prepare-images:
23+
ifneq ($(CI),true)
24+
@$(MAKE) talos-registry-mirror
2325
@echo ">>> Preparing Talos images..."
2426
@for image in $$(talosctl image default | grep -v flannel); do \
2527
if [ -z $$(docker images -q $$image) ]; then \
@@ -34,6 +36,7 @@ talos-prepare-images: talos-registry-mirror
3436
echo ">>>>> Pushing $$img to registry mirror..."; \
3537
docker push $$img; \
3638
done
39+
endif
3740

3841
.PHONY: talos-init
3942
talos-init: talos-clean talos-prepare-images

0 commit comments

Comments
 (0)