mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-20 14:11:11 +02:00
In order to DRY up all installation methods and mount methods, this PR introduces a few more runtime modes. The modes are then used to determine the strategy for creating and or mounting the paritions. Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com>
19 lines
939 B
Bash
Executable File
19 lines
939 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eou pipefail
|
|
|
|
## Setup svc acct
|
|
echo $GCE_SVC_ACCT | base64 -d > /tmp/svc-acct.json
|
|
apk add --no-cache python
|
|
curl -L -o /tmp/google-cloud-sdk.tar.gz https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-253.0.0-linux-x86_64.tar.gz
|
|
tar -xf /tmp/google-cloud-sdk.tar.gz -C /tmp
|
|
/tmp/google-cloud-sdk/install.sh --disable-installation-options --quiet
|
|
/tmp/google-cloud-sdk/bin/gcloud auth activate-service-account --key-file /tmp/svc-acct.json
|
|
|
|
## Push talos-gcp to storage bucket
|
|
/tmp/google-cloud-sdk/bin/gsutil cp ./build/gcp.tar.gz gs://talos-e2e/gcp-${TAG}.tar.gz
|
|
|
|
## Create image from talos-gcp
|
|
/tmp/google-cloud-sdk/bin/gcloud --quiet --project talos-testbed compute images delete talos-e2e-${TAG} || true ##Ignore error if image doesn't exist
|
|
/tmp/google-cloud-sdk/bin/gcloud --quiet --project talos-testbed compute images create talos-e2e-${TAG} --source-uri gs://talos-e2e/gcp-${TAG}.tar.gz
|