http://docs.redash.io/en/latest/setup.html#google-compute-engine
API Manager
- Search
Compute Engine
- Click
Enable API
$ gcloud compute images create "redash-081-b1110-bq" \
--source-uri gs://redash-images/redash.0.8.1.b1110-bq.tar.gz
$ gcloud compute networks create redash --range 10.242.1.0/24
$ gcloud compute firewall-rules create redash-allow-http \
--allow tcp:80 \
--network redash \
--source-ranges 0.0.0.0/0
$ gcloud compute firewall-rules create redash-allow-https \
--allow tcp:443 \
--network redash
\--source-ranges 0.0.0.0/0
$ gcloud compute instances create redash \
--image redash-081-b1110-bq \
--scopes storage-ro,bigquery \
--network redash \
--zone us-central1-a
$ gcloud compute instances delete redash --zone us-central1-a