mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Pin version of cloudflared to 2025.5.0 (#30179)
CI is failing with: ``` Selecting previously unselected package cloudflared. (Reading database ... 219352 files and directories currently installed.) Preparing to unpack cloudflared-linux-amd64.deb ... Unpacking cloudflared (2025.6.1) ... Setting up cloudflared (2025.6.1) ... Processing triggers for man-db (2.12.0-4build2) ... error parsing tunnel ID: fleet-test-81a7ab03-3e62-43a2-bdc0-8470dbdca600 is neither the ID nor the name of any of your tunnels Awaiting tunnel ready... failed to create tunnel: Unknown output format 'default' Awaiting tunnel ready... Awaiting tunnel ready... [...] ``` E.g.: https://github.com/fleetdm/fleet/actions/runs/15746535584/job/44417207764?pr=30140 It's hard to troubleshoot what's going on with the latest version without good credentials, so we will pin the version for now as a workaround.
This commit is contained in:
parent
3b5ae7d713
commit
3630c777d6
2 changed files with 10 additions and 2 deletions
6
.github/workflows/fleet-and-orbit.yml
vendored
6
.github/workflows/fleet-and-orbit.yml
vendored
|
|
@ -97,8 +97,12 @@ jobs:
|
|||
sudo sysctl -w net.core.rmem_max=2500000
|
||||
|
||||
# Install cloudflared
|
||||
wget https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64.deb
|
||||
#
|
||||
# We pin to version 2025.5.0 because something broke with 2025.6.1.
|
||||
# 2025.6.1 fails with "failed to create tunnel: Unknown output format 'default'"
|
||||
wget https://github.com/cloudflare/cloudflared/releases/download/2025.5.0/cloudflared-linux-amd64.deb
|
||||
sudo dpkg -i cloudflared-linux-amd64.deb
|
||||
|
||||
# Add secret
|
||||
echo "$CERT_PEM" | base64 -d > cert.pem
|
||||
# Start tunnel
|
||||
|
|
|
|||
6
.github/workflows/integration.yml
vendored
6
.github/workflows/integration.yml
vendored
|
|
@ -63,8 +63,12 @@ jobs:
|
|||
sudo sysctl -w net.core.rmem_max=2500000
|
||||
|
||||
# Install cloudflared
|
||||
wget https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64.deb
|
||||
#
|
||||
# We pin to version 2025.5.0 because something broke with 2025.6.1.
|
||||
# 2025.6.1 fails with "failed to create tunnel: Unknown output format 'default'"
|
||||
wget https://github.com/cloudflare/cloudflared/releases/download/2025.5.0/cloudflared-linux-amd64.deb
|
||||
sudo dpkg -i cloudflared-linux-amd64.deb
|
||||
|
||||
# Add secret
|
||||
echo "$CERT_PEM" | base64 -d > cert.pem
|
||||
# Start tunnel
|
||||
|
|
|
|||
Loading…
Reference in a new issue