Add `created-by` attribute to MDS, and pass it to logger initialization for attachment of MIG labels to Cloud Logging logs.

PiperOrigin-RevId: 740846437
8 files changed
tree: 3febfd96e2d500c8b074f50c40b1a048536773f6
  1. build/
  2. cmd/
  3. internal/
  4. CONTRIBUTING.md
  5. go.mod
  6. go.sum
  7. LICENSE
  8. Makefile
  9. README.md
  10. version
README.md

TODO: Add link to external documentation whenever it is ready.

Guest Agent for Google Compute Engine.

This repository contains the source code and packaging artifacts for the Google guest agent. These components are installed on Windows and Linux GCE VMs in order to enable GCE platform features.

Building Guest Agent

In the codebase there's a GNU Make based build system with targets to build and test the guest agent.

In order to build both the guest-agent and core_plugins, run

make

To build only one or the other, run the respective make target:

make build cmd/google_guest_agent/google_guest_agent
make build cmd/core_plugin/core_plugin

To run all the go tests, run:

make test

For more targets and info about the build system run:

make help