tstest/integration/vms: skip cloud-init package updates (#19443)

The package updates started getting really slow yesterday. We can do
better, but attempt a band aid fix for now, as the test is failing about
a third of the time on PR CI.

Updates tailscale/corp#40465

Change-Id: Icf53292ba83dd1ed76b9bdf9fb94a8f6fb448c07

Signed-off-by: Tom Proctor <tomhjp@users.noreply.github.com>
This commit is contained in:
Tom Proctor 2026-04-17 10:39:47 +01:00 committed by GitHub
parent 50d7176333
commit c2da563fef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,11 +35,10 @@ func (d *Distro) InstallPre() string {
return ` - [ dnf, install, "-y", iptables ]`
case "apt":
return ` - [ apt-get, update ]
- [ apt-get, "-y", install, curl, "apt-transport-https", gnupg2 ]`
return ` - [ apt-get, "-y", install, curl, "apt-transport-https", gnupg2 ]`
case "apk":
return ` - [ apk, "-U", add, curl, "ca-certificates", iptables, ip6tables ]
return ` - [ apk, add, curl, "ca-certificates", iptables, ip6tables ]
- [ modprobe, tun ]`
}