File tree 2 files changed +49
-1
lines changed
2 files changed +49
-1
lines changed Original file line number Diff line number Diff line change @@ -2039,6 +2039,50 @@ jobs:
2039
2039
- name : Cleanup
2040
2040
run : timeout -k 10 180 sh -x dist/images/cleanup.sh
2041
2041
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
+
2042
2086
cilium-chaining-e2e :
2043
2087
name : Cilium Chaining E2E
2044
2088
needs :
@@ -3308,6 +3352,7 @@ jobs:
3308
3352
- underlay-logical-gateway-installation-test
3309
3353
- chart-test
3310
3354
- installation-compatibility-test
3355
+ - talos-installation-test
3311
3356
- no-ovn-lb-test
3312
3357
- no-np-test
3313
3358
- cilium-chaining-e2e
Original file line number Diff line number Diff line change @@ -19,7 +19,9 @@ talos-registry-mirror:
19
19
fi
20
20
21
21
.PHONY : talos-prepare-images
22
- talos-prepare-images : talos-registry-mirror
22
+ talos-prepare-images :
23
+ ifneq ($(CI ) ,true)
24
+ @$(MAKE) talos-registry-mirror
23
25
@echo ">>> Preparing Talos images..."
24
26
@for image in $$(talosctl image default | grep -v flannel); do \
25
27
if [ -z $$(docker images -q $$image) ]; then \
@@ -34,6 +36,7 @@ talos-prepare-images: talos-registry-mirror
34
36
echo ">>>>> Pushing $$img to registry mirror..."; \
35
37
docker push $$img; \
36
38
done
39
+ endif
37
40
38
41
.PHONY : talos-init
39
42
talos-init : talos-clean talos-prepare-images
You can’t perform that action at this time.
0 commit comments