Skip to content

Releases: GoogleCloudPlatform/guest-agent

20231103.01

03 Nov 22:30
94cae3c
Compare
Choose a tag to compare
Update Google UEFI variable (#329)

20231103.00

03 Nov 17:56
9034ba6
Compare
Choose a tag to compare
Make config parsing order consistent (#327)

20231031.01

31 Oct 21:46
7a1a1cf
Compare
Choose a tag to compare
Add prefix to scheduler logs (#325)

20231031.00

31 Oct 20:03
7a1a1cf
Compare
Choose a tag to compare
Add prefix to scheduler logs (#325)

20231030.00

30 Oct 20:31
3ddd9d4
Compare
Choose a tag to compare
Test configuration files are loaded in the documented order. Fix init…

20231027.00

27 Oct 18:43
3ddd9d4
Compare
Choose a tag to compare
Test configuration files are loaded in the documented order. Fix init…

20231026.00

26 Oct 20:47
09d085e
Compare
Choose a tag to compare
Rotate MDS root certificate (#322)

20231020.00

20 Oct 21:57
fa78247
Compare
Choose a tag to compare
Update response struct, add tests (#315)

20231019.00

19 Oct 18:08
154b87d
Compare
Choose a tag to compare
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

16 Oct 19:33
fbd7766
Compare
Choose a tag to compare
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.