google-guest-agent: vendor dependencies

This is needed for transitioning to a live ebuild.

BUG=b/542607325
TEST=presubmit, validation
RELEASE_NOTE=None

Ran the following commands:
make gen-pbgo
rm -rf proto_deps
go mod tidy
go mod vendor
git add .

cos-patch: bug
Change-Id: Ib9b040381ecfc56495490650ccd6c002ef7fa44b
Reviewed-on: https://cos-review.googlesource.com/c/third_party/google-guest-agent/+/180847
SLSA-Policy-Verified: SLSA Policy Verification Service <devtools-gerritcodereview-exitgate@google.com>
Tested-by: Cusky Presubmit Bot <presubmit@cos-infra-prod.iam.gserviceaccount.com>
Reviewed-by: Robert Kolchmeyer <rkolchmeyer@google.com>
2625 files changed
tree: 7b97dc2ee78a57cc2627ee880aa6a27cc3f46404
  1. build/
  2. cmd/
  3. internal/
  4. vendor/
  5. CONTRIBUTING.md
  6. go.mod
  7. go.sum
  8. LICENSE
  9. Makefile
  10. README.md
  11. 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