google-cloud-platform

How to upgrade Google Cloud AI Platform Jupyter Lab to Python 3.7+

[亡魂溺海] 提交于 2021-02-07 04:22:11
问题 Google Cloud Platform's AI Platform has convenient deployment of Jupyter Lab, but only for Python 2 and Python 3.5.3. How can I upgrade my instance to be able to run Python 3.7 (or higher) notebooks? 回答1: This solution is built off of the answers in How do I install Python 3.7 in google cloud shell. How to get python 3.7 working on Google Cloud Platform's AI Platform Notebook Instances, which comes with built-in support for JupyterLab, but is only updated to python 3.5.3: Create or use an

How to get the active authenticated gcloud account?

你离开我真会死。 提交于 2021-02-06 15:11:01
问题 Using gcloud auth ... you can add or remove accounts used during the gcloud commands. Is there a way to get the active account without grep -ing and awk -ing? gcloud auth list is good for humans but not good enough to a machine. I want a cleaner solution. gcloud config list account also shows me to verbose output: Your active configuration is: [default] [core] account = service@<my_project>.iam.gserviceaccount.com 回答1: I found the solution: gcloud config list account --format "value(core

How to get the active authenticated gcloud account?

血红的双手。 提交于 2021-02-06 15:10:38
问题 Using gcloud auth ... you can add or remove accounts used during the gcloud commands. Is there a way to get the active account without grep -ing and awk -ing? gcloud auth list is good for humans but not good enough to a machine. I want a cleaner solution. gcloud config list account also shows me to verbose output: Your active configuration is: [default] [core] account = service@<my_project>.iam.gserviceaccount.com 回答1: I found the solution: gcloud config list account --format "value(core

How to get the active authenticated gcloud account?

纵饮孤独 提交于 2021-02-06 15:08:52
问题 Using gcloud auth ... you can add or remove accounts used during the gcloud commands. Is there a way to get the active account without grep -ing and awk -ing? gcloud auth list is good for humans but not good enough to a machine. I want a cleaner solution. gcloud config list account also shows me to verbose output: Your active configuration is: [default] [core] account = service@<my_project>.iam.gserviceaccount.com 回答1: I found the solution: gcloud config list account --format "value(core

How to get the active authenticated gcloud account?

﹥>﹥吖頭↗ 提交于 2021-02-06 15:07:14
问题 Using gcloud auth ... you can add or remove accounts used during the gcloud commands. Is there a way to get the active account without grep -ing and awk -ing? gcloud auth list is good for humans but not good enough to a machine. I want a cleaner solution. gcloud config list account also shows me to verbose output: Your active configuration is: [default] [core] account = service@<my_project>.iam.gserviceaccount.com 回答1: I found the solution: gcloud config list account --format "value(core

Bigquery - schedule stored procedure not working anymore

和自甴很熟 提交于 2021-02-05 12:20:34
问题 recently there was a change in Bigquery UI and it seems that is no longer possible to schedule a stored procedure to execute automatically. Using the UI, just keeps asking to insert a destination table. If I put a dummy table, the schedule is created but then when tries to execute just throws an error saying that we can't have a destination table when executing a stored procedure. Is anyone having this issue and has any kind of workaround ? Thanks in advance. 回答1: You can opt out of the

Bigquery - schedule stored procedure not working anymore

心不动则不痛 提交于 2021-02-05 12:17:27
问题 recently there was a change in Bigquery UI and it seems that is no longer possible to schedule a stored procedure to execute automatically. Using the UI, just keeps asking to insert a destination table. If I put a dummy table, the schedule is created but then when tries to execute just throws an error saying that we can't have a destination table when executing a stored procedure. Is anyone having this issue and has any kind of workaround ? Thanks in advance. 回答1: You can opt out of the

TLS handshake failure

北慕城南 提交于 2021-02-05 12:10:59
问题 This question was migrated from Information Security Stack Exchange because it can be answered on Stack Overflow. Migrated last month . I have an embedded IOT device connected to real time DB FireBase. However, the server cancel the TLS handshake with fatal alert 0x46 = protocol_version. I have managed to get an hex dump of the whole handshake process. Can someone explain me why the handshake was canceled? My device is using TLS V1.2 as firebase expected as it can be seen in the header (16 3

TLS handshake failure

妖精的绣舞 提交于 2021-02-05 12:10:43
问题 This question was migrated from Information Security Stack Exchange because it can be answered on Stack Overflow. Migrated last month . I have an embedded IOT device connected to real time DB FireBase. However, the server cancel the TLS handshake with fatal alert 0x46 = protocol_version. I have managed to get an hex dump of the whole handshake process. Can someone explain me why the handshake was canceled? My device is using TLS V1.2 as firebase expected as it can be seen in the header (16 3

502 Server Error when creating http load balancer in google/GKE

喜你入骨 提交于 2021-02-05 11:48:55
问题 My application consists of play web application deployed using GKE. The application was running fine (using Deployment and Loadbalancer service) and then I decided to use Ingress . I made the following changes which has made the application unreachable. I get 502 error when I try to connect with the application using ingress IP. The application is of kind Deployment . apiVersion: apps/v1 kind: Deployment metadata: name: webapp spec: replicas: 2 selector: matchLabels: app: webapp It has a