Questions tagged [gcloud-ruby]
7 questions
4
votes
0 answers
How can I generate a signed URL for a file in cloud storage that uses the static site URL?
Say I have a domain, media.coolsite.com. Also say I have a bucket in Google Cloud Storage with the same name. I also have the cname setup properly, so that when I visit media.coolsite.com in the browser, it renders index.html in the bucket.
The…

cilphex
- 6,006
- 6
- 34
- 44
0
votes
0 answers
How to create GKE cluster using gcloud ruby client
Am trying to create a GKE cluster using the gcloud-ruby-container gem.
But there seems to be close to 0 documentation on how to do this. Not sure if am not finding the correct docs.
I installed the gem and authenticated using service account json…

Shankar Thyagarajan
- 818
- 10
- 22
0
votes
1 answer
Conflict is using gcloud and google-api-client in ruby
I want to install gcloud 0.11.0, which is depandent on google-api-client version 0.8.3. However, in order to user Google Drive, I need 0.9+.
How can they reside together? Google specifically says - you can use them both... Huh?!
The Google APIs…

Himberjack
- 5,682
- 18
- 71
- 115
0
votes
0 answers
"Standard" Windows fix does not resolve SSL issue. Why?
I am having issues running a app locally with gcloud on a windows 10 machine. I get the following error:
C:/Ruby23-x64/lib/ruby/2.3.0/net/http.rb:933:in `connect_nonblock': SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B:…

Eric Snyder
- 1,816
- 3
- 22
- 46
0
votes
1 answer
Gcloud-ruby backoff on copying files and other operations
As far as I can tell [0] currently gcloud-ruby gem only does backoff on bucket operations, but I'm getting Gcloud::Storage::ApiError: User Rate Limit Exceeded on copying files, as far as I can tell there is no way currently to enable it for other…

Ev Dolzhenko
- 6,100
- 5
- 38
- 30
0
votes
0 answers
Nginx + CarrierWave + Fog + GoogleCloud
I tried with solutions and answers that already exist in this environment but do not solve my problem, so I open a new thread.
Mount a test server with these technologies in a homely own server and works perfectly in keeping gcloud store. When I…

Sebastián Campetella
- 1
- 1
- 3
0
votes
1 answer
Exception when updating bigquery schema
I tried insert to bigquery with schema:
require 'gcloud'
gc = Gcloud.new 'PROJECT_ID'
bq = gc.bigquery
ds = bq.dataset 'MY_DATASET'
t = ds.create_table 'MY_TABLE'
t.schema = { fields: [ { name: 'Name', type: 'STRING' } ] }
t.insert [{'name' =>…

Victor Lellis
- 1,304
- 1
- 14
- 25