mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
The new script was used for the fleetd v1.20.0 release #15991: ``` /path/to/fleet/tools/tuf/promote_edge_to_stable.sh orbit 1.20.0 /path/to/fleet/tools/tuf/promote_edge_to_stable.sh desktop 1.20.0 ``` And to release osqueryd 5.11.0 to stable the following can be executed: ``` /path/to/fleet/tools/tuf/promote_edge_to_stable.sh osqueryd 5.11.0 ```
2.7 KiB
2.7 KiB
Fleetd auto-update N+1 test
The following guide describes how to test an N+1 upgrade to fleetd components.
We need to test that the main (to-be-released) version of fleetd has not broken the auto-update mechanism.
This guide only supports running from a macOS workstation.
Setup
Follow the setup in the README.md.
Build and push fleetd N+1
orbit
Build:
GOOS=darwin GOARCH=amd64 go build -ldflags="-X github.com/fleetdm/fleet/v4/orbit/pkg/build.Version=43" -o orbit-darwin ./orbit/cmd/orbit
GOOS=linux GOARCH=amd64 go build -ldflags="-X github.com/fleetdm/fleet/v4/orbit/pkg/build.Version=43" -o orbit-linux ./orbit/cmd/orbit
GOOS=windows GOARCH=amd64 go build -ldflags="-X github.com/fleetdm/fleet/v4/orbit/pkg/build.Version=43" -o orbit.exe ./orbit/cmd/orbit
Push:
./tools/tuf/test/push_target.sh macos orbit orbit-darwin 43
./tools/tuf/test/push_target.sh linux orbit orbit-linux 43
./tools/tuf/test/push_target.sh windows orbit orbit.exe 43
desktop
Build:
FLEET_DESKTOP_VERSION=43 make desktop-app-tar-gz
FLEET_DESKTOP_VERSION=43 make desktop-windows
FLEET_DESKTOP_VERSION=43 make desktop-linux
./tools/tuf/test/push_target.sh macos desktop desktop.app.tar.gz 43
./tools/tuf/test/push_target.sh linux desktop desktop.tar.gz 43
./tools/tuf/test/push_target.sh windows desktop fleet-desktop.exe 43
osqueryd
Assuming we are upgrading to 5.11.0 (you can also downgrade to a lower version to test the auto-update mechanism)
Download:
# macOS
make osqueryd-app-tar-gz version=5.11.0 out-path=.
# osqueryd
curl -L https://github.com/osquery/osquery/releases/download/5.11.0/osquery_5.11.0-1.linux_amd64.deb --output osquery.deb
ar x osquery.deb
tar xf data.tar.gz
chmod +x ./opt/osquery/bin/osqueryd
cp ./opt/osquery/bin/osqueryd osqueryd
# Windows
curl -L https://github.com/osquery/osquery/releases/download/5.11.0/osquery-5.11.0.msi --output osquery-5.11.0.msi
# Run the following on a Windows device:
msiexec /a osquery-${{ env.OSQUERY_VERSION }}.msi /qb TARGETDIR=C:\temp
# Copy C:\temp\osquery\osqueryd\osqueryd.exe from the Windows device into the macOS workstation.
Release:
./tools/tuf/test/push_target.sh macos-app osqueryd osqueryd.app.tar.gz 5.11.0
./tools/tuf/test/push_target.sh linux osqueryd ./osqueryd 5.11.0
./tools/tuf/test/push_target.sh windows osqueryd ./osqueryd.exe 5.11.0
Verify auto-update
- Run the following live query on the hosts:
SELECT * FROM orbit_info;. The query should now returnversion=43. - Run the following live query on the hosts:
SELECT * FROM osquery_info;. The query should now returnversion=5.11.0. - Verify all hosts now show "Fleet Desktop v43.0.0" on the Fleet Desktop menu.