44 workflow_call :
55
66env :
7- K8S_VERSION : v1.31 .2
8- MICROK8S_CHANNEL : 1.31 /stable
9- SHIM_SPIN_VERSION : v0.17 .0
7+ K8S_VERSION : v1.32 .2
8+ MICROK8S_CHANNEL : 1.32 /stable
9+ SHIM_SPIN_VERSION : v0.18 .0
1010 DOCKER_BUILD_SUMMARY : false
1111
1212jobs :
8585 - name : Install helm
8686 uses : Azure/setup-helm@v4
8787 with :
88- version : v3.15.4
88+ version : v3.17.2
8989
9090 - name : Download artifact
9191 uses : actions/download-artifact@v4
@@ -102,11 +102,13 @@ jobs:
102102 uses : helm/kind-action@v1
103103 with :
104104 cluster_name : kind
105+ # Versions lower than v0.27.0 encounter https://github.com/kubernetes-sigs/kind/issues/3795
106+ version : v0.27.0
105107 node_image : kindest/node:${{ env.K8S_VERSION }}
106108
107109 - name : Create minikube cluster
108110 if : matrix.config.type == 'minikube'
109- uses :
medyagh/[email protected] .18 111+ uses :
medyagh/[email protected] .19 110112 with :
111113 container-runtime : containerd
112114 kubernetes-version : ${{ env.K8S_VERSION }}
@@ -122,7 +124,7 @@ jobs:
122124 uses : AbsaOSS/k3d-action@v2
123125 with :
124126 cluster-name : k3s-default
125- k3d-version : v5.7.4
127+ k3d-version : v5.8.3
126128 args : |
127129 --image docker.io/rancher/k3s:${{ env.K8S_VERSION }}-k3s1
128130
@@ -187,7 +189,8 @@ jobs:
187189 # Note: there may be multiple pods pending fix in https://github.com/spinkube/runtime-class-manager/issues/140
188190 install_pod=$(kubectl get pods -n rcm --no-headers -o name | awk '{if ($1 ~ "-spin-v2-install") print $0}' | tail -n 1)
189191 kubectl describe -n rcm $install_pod || true
190- kubectl logs -n rcm $install_pod || true
192+ kubectl logs -n rcm -c downloader $install_pod || true
193+ kubectl logs -n rcm -c provisioner $install_pod || true
191194
192195 # RCM pod logs
193196 kubectl logs -n rcm -l app.kubernetes.io/name=runtime-class-manager || true
0 commit comments