Releases: GoogleCloudPlatform/guest-agent
Releases · GoogleCloudPlatform/guest-agent
20231103.01
Update Google UEFI variable (#329)
20231103.00
Make config parsing order consistent (#327)
20231031.01
Add prefix to scheduler logs (#325)
20231031.00
Add prefix to scheduler logs (#325)
20231030.00
Test configuration files are loaded in the documented order. Fix init…
20231027.00
Test configuration files are loaded in the documented order. Fix init…
20231026.00
Rotate MDS root certificate (#322)
20231020.00
Update response struct, add tests (#315)
20231019.00
snapshot: add context cancellation handling (#318) If snapshot is enabled and the process gets a SIG ABORT the context will be canceled but the snapshot listener will keep trying to create a context nevertheless. This change makes sure we return in case CreateConnection()'s returned error is a context cancellation.
20231016.00
instance setup: trust/rely on metadata package's retry (#316) With this infinite retry we'll fail to handle SIG ABORT. If the network/MDS is unreachable and a reboot is done guest agent will only finish after the systemd unit's timeout is reached and then systemd does a SIG KILL - the MDS package will fail since the context is canceled and return error, but this loop is ignoring the error and will keep retrying. This PR changes the behavior and relies on the metadata package's retry strategy.