Andrew Rynhard 13d0e5840c docs: add v0.3 boilerplate
This adds the logic for handling multiple versions of documentation, and
adds a copy of the v0.2 docs as a starting point.

Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com>
2019-10-18 23:46:12 -07:00

730 B

title
title
GCP

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

make image-gcloud

Upload the image to GCP with:

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

Create a custom GCP 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 GCP, making sure to create a user-data key in the "Metadata" section, with a value of your full Talos node configuration.

Further exploration is needed to see if we can use the "Startup script" section instead.