blob: 5fb5ea742c037154c4a6ab9ae3910a59e3b3b1d5 [file] [log] [blame]
#/bin/bash
# Creates the service account that has read-only access to GCE for skia.org
# server side include support, and export a key for it into the kubernetes
# cluster as a secret.
set -e -x
source ./config.sh
source ../bash/ramdisk.sh
# New service account we will create.
SA_NAME=skia-docs
cd /tmp/ramdisk
gcloud iam service-accounts create "${SA_NAME}" --display-name="Read-only access to GCS for skia docs server side includes."
gcloud beta iam service-accounts keys create ${SA_NAME}.json --iam-account="${SA_NAME}@${PROJECT_SUBDOMAIN}.iam.gserviceaccount.com"
kubectl create secret generic "${SA_NAME}" --from-file=key.json=${SA_NAME}.json
cd -