talos/docs/content/guides/gcloud.md
Andrew Rynhard 06ffeaedad
docs: bring in missing changes from docs repo (#771)
Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com>
2019-06-24 18:20:12 -07:00

867 B

title, date, draft, menu
title date draft menu
Google Cloud 2019-2-19 false
docs
parent
guides

First, from a source checkout of the Talos repository, create the Google Cloud compatible image:

make image-gcloud

Upload the image to Google Cloud with:

gsutil cp /path/to/talos/build/gcloud/talos.tar.gz gs://<gcloud bucket name>

Create a custom Google Cloud image with:

gcloud compute images create talos \
 --source-uri=gs://<gcloud bucket name>/talos.tar.gz \
 --guest-os-features=VIRTIO_SCSI_MULTIQUEUE

Create an instance in Google Cloud, making sure to create a user-data key in the "Metadata" section, with a value of your full Talos node configuration.

{{% note %}} Further exploration is needed to see if we can use the "Startup script" section instead. {{% /note %}}