Questions tagged [google-cloud-intellij]

Questions about the Google Cloud Tools for Intellij

Google Cloud tools for Intellij (docs) (github). Deploy to App Engine (Standard) (Flexible) Use Stackdriver Debugger

19 questions
4
votes
2 answers

Google AppEngine in Intellij

How do I set up the Google App Engine in IntelliJ? I think I'm missing something here. I see that they have app engine instructions on IntelliJ's site, but I don't see how to install it into Intellij.
HalR
  • 11,411
  • 5
  • 48
  • 80
3
votes
1 answer

How do I add --promote in Google App Engine?

I am deploying my application to Google App Engine through IntelliJ plugin Cloud Code -> App Engine -> Deploy to App Engine. The application deploys just fine and the app works, just that it creates a different target-url than I have set while…
2
votes
2 answers

Go Cloud Code/Docker on M1 Mac exec format error

I'm trying to use GoLand/Cloud Code to build a Golang microservice. But I can't seem to get the Dockerfile nailed down. FROM --platform=linux/arm64 golang:1.20-alpine AS build_base RUN apk add --no-cache git # Set the Current Working Directory…
2
votes
1 answer

Connect to a container running in Docker (Redis) from Cloud Run Emulator locally

I'm making local cloud run services with the Cloud Code plugin to Intellij (PyCharm) but the locally deployed service cannot connect to the redis instance running in Docker: redis.exceptions.ConnectionError: Error 111 connecting to 127.0.0.1:6379.…
2
votes
0 answers

Unable to review local deploy logs with Cloud Run in Cloud Code for Intellij

I'm building a Cloud Run service with Cloud Code for Intellij (PyCharm) and the ide is not able to access the deployment error logs prior to failing to deploy locally: ... Step 7/8 : COPY . . ---> d239cd803bb2 Step 8/8 : CMD exec uvicorn main:app…
Michael
  • 1,428
  • 3
  • 15
  • 34
1
vote
2 answers

Where I can see "set context" for change kubernetes namespace in Intellij IDEA?

In official tutorial saying about changing namespace by cliking on namespace item and set context But I can't see in my version 2020.3
max_b
  • 151
  • 2
  • 10
1
vote
2 answers

Error getting access token from metadata server at: http://metadata/computeMetadata/v1/instance/service-accounts/default/token

I have tried with p12 keyfile, it is successfully working and I was able to fetch data from gcs bucket. But with json keyfile sparksession is not getting the json config values. Instead, It is going for default metadata. I am using maven and…
1
vote
1 answer

can't run or deploy Google App Engine from IntelliJ

I'd like to deploy an app on GAE, but I think I must be missing something. I've downloaded the google cloud code plugin for IntelliJ. I've installed the gcloud SDK I've authenticated with my google account I've created a new project of type…
mdarwin
  • 1,684
  • 7
  • 28
  • 72
1
vote
1 answer

Is there support for Google Cloud tools in Jetbrains Rider

We are working on an app for deployment to Google Cloud. So, it would be nice if we could integrate the Google Cloud tools with Rider. There is a module to integrate Intellij with the GCP tools but it doesn't work in Rider. I've been beating at…
EoRaptor013
  • 1,735
  • 4
  • 18
  • 31
1
vote
3 answers

How can I get Google Cloud plugin to work in Goland and PyCharm.?

I'd like to get the Google Cloud Tools plugin to work with PyCharm and Goland I downloaded the plugin's .zip, and pointed each IDE at it, and installed it. In each case, I receive the following error: Plugin Error Problems found loading…
MXWest
  • 351
  • 2
  • 7
0
votes
0 answers

How do you avoid rebuilding the container for every code change when using IntelliJ IDEA to develop a Cloud Run service locally?

I'm pretty new to IntelliJ (and Docker) so please excuse me if this question is inherently daft - I feel like I must be missing something. I'm using IDEA Ultimate to develop a Cloud Run service (in node.js) which has to be built as a Docker…
0
votes
1 answer

How to Deploye Nuxt.js app on google cloud run with intellij pluging

I try to deploye Nuxt my app on google could run , with intellij pluging Build [gcr.io/webapp-378307/differenceapp] succeeded /home/ludow/.cache/google-cloud-tools-java/managed-cloud-sdk/LATEST/google-cloud-sdk/bin/gcloud run deploy differenceapp…
Krysdow
  • 53
  • 5
0
votes
1 answer

How to remove an account from the Cloud code intellij plugin

I have recently the cloud code plugin for Rubymine and i was wondering how to remove an account so the plugin cannot access the projects associated with that google account.
alex
  • 646
  • 9
  • 19
0
votes
1 answer

Project env vars (like GCP_PROJECT, CLOUDSDK_CORE_PROJECT) are no longer set when debugging cloud run locally

I used to have a number of environment vars set when I tried to run my Cloud Run Dockerfile locally. GCP_PROJECT GCLOUD_PROJECT CLOUDSDK_CORE_PROJECT GOOGLE_CLOUD_PROJECT They all were just the same value – my locally configured Google Cloud…
Kevin Moore
  • 5,921
  • 2
  • 29
  • 43
0
votes
1 answer

How to specify GOOGLE_APPLICATION credentials when using Intellij Cloud Code Cloud Run locally?

PyCharm's Cloud Code plugin will let me run and deploy Google Cloud Run services. However, when I try to set up a local configuration, I am not sure how to specify my Google Application Credentials. I know how to mount this via the command line…
1
2