blob: 89c708612b1c4cf7f6833086dab82b56e99deee8 [file] [log] [blame]
#/bin/bash
# Create the service account that has access to the skia-corp-backup bucket.
set -e -x
source ../kube/corp-config.sh
source ../bash/ramdisk.sh
# New service account we will create.
SA_NAME=skia-backup-to-gcs-internal
SA_EMAIL="${SA_NAME}@${PROJECT_SUBDOMAIN}.iam.gserviceaccount.com"
cd /tmp/ramdisk
gcloud iam service-accounts create "${SA_NAME}" --display-name="Read-write access to the skia-corp-backup bucket."
gsutil acl ch -u "${SA_EMAIL}:O" gs://skia-corp-backup
gcloud beta iam service-accounts keys create ${SA_NAME}.json --iam-account="${SA_EMAIL}"
kubectl create secret generic "${SA_NAME}" --from-file=key.json=${SA_NAME}.json
cd -