prune travis config (#907)

1 file changed
tree: b06437eddb77e6d4fb6a4196295fce08845874b0
  1. packages/
  2. .gitignore
  3. CONTRIB.md
  4. LICENSE
  5. README.md
README.md

Linux Guest Environment for Google Compute Engine

This repository historically stored the collection of packages installed on Google supported Compute Engine images. Documentation here summarizes these packages and points to new locations for various software components.

Table of Contents

Background

The Linux guest environment comprises the Google provided configuration and tooling inside of a Google Compute Engine (GCE) virtual machine. The metadata server is a communication channel for transferring information from a client into the guest. The Linux guest environment includes a set of scripts and daemons (long-running processes) that read the content of the metadata server to make a virtual machine run properly on our platform.

Packaging

We build the following packages for the Linux guest environment.

  • google-compute-engine(located in the guest-configs repo)
    • System init scripts (systemd, upstart, or sysvinit).
    • Includes udev rules, sysctl rules, rsyslog configs, dhcp configs for hostname setting.
    • Includes bash scripts used during instance setup.
    • This package depends on the other necessary packages, and can be used as an entry point to install the guest environment.
  • google-compute-engine-oslogin(located in the guest-oslogin repo)
  • google-guest-agent(located in the guest-agent repo)
    • The guest agent which performs all on-guest actions needed to support GCE features.
  • gce-disk-expand(located in the guest-diskexpand repo)
    • The on-boot resize scripts for root partition.

The legacy guest Python code is packaged as a compliant PyPI Python package that can be used as a library or run independently.

Package Distribution

The deb and rpm packages are published to Google Cloud repositories. Debian, CentOS, and RHEL use these repositories to install and update the google-compute-engine, google-compute-engine-oslogin and google-guest-agent packages. If you are creating a custom image, you can also use these repositories in your image.

For Debian, run the following commands as root:

Add the public repo key to your system:

curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -

Add a source list file /etc/apt/sources.list.d/google-cloud.list and change DIST to either stretch for Debian 9 or buster for Debian 10:

DIST=stretch
sudo tee /etc/apt/sources.list.d/google-cloud.list << EOM
deb http://packages.cloud.google.com/apt google-compute-engine-${DIST}-stable main
deb http://packages.cloud.google.com/apt google-cloud-packages-archive-keyring-${DIST} main
EOM

Install the packages to maintain the public key over time:

sudo apt update; sudo apt install -y google-cloud-packages-archive-keyring

You are then able to install any of the packages from this repo.

For RedHat based distributions, run the following commands as root:

Add the yum repo to a repo file /etc/yum.repos.d/google-cloud.repo for EL6, EL7, or EL8. Change DIST to either 6, 7, or 8 respectively:

DIST=7
tee /etc/yum.repos.d/google-cloud.repo << EOM
[google-compute-engine]
name=Google Compute Engine
baseurl=https://packages.cloud.google.com/yum/repos/google-compute-engine-el${DIST}-x86_64-stable
enabled=1
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://packages.cloud.google.com/yum/doc/yum-key.gpg
       https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg
EOM

You are then able to install any of the packages from this repo.

Deprecated packages

Deprecated PackageReplacement
python-google-compute-enginegoogle-guest-agent
python3-google-compute-enginegoogle-guest-agent
google-compute-engine-jessiegoogle-compute-engine
google-compute-engine-stretchgoogle-compute-engine
google-compute-engine-initgoogle-compute-engine
google-compute-engine-init-jessiegoogle-compute-engine
google-compute-engine-init-stretchgoogle-compute-engine
google-configgoogle-compute-engine
google-config-jessiegoogle-compute-engine
google-config-stretchgoogle-compute-engine
google-compute-daemonpython-google-compute-engine
google-startup-scriptsgoogle-compute-engine

Contributing

Have a patch that will benefit this project? Awesome! Follow these steps to have it accepted.

  1. Please sign our Contributor License Agreement.
  2. Fork this Git repository and make your changes.
  3. Create a Pull Request against the development branch.
  4. Incorporate review feedback to your changes.
  5. Accepted!

License

All files in this repository are under the Apache License, Version 2.0 unless noted otherwise.