Questions tagged [google-kubernetes-engine]

Google Kubernetes Engine (formerly known as Container Engine) takes care of provisioning and maintaining the underlying virtual machine cluster, scaling your application, and operational logistics like logging, monitoring, and health management.

Google Kubernetes Engine takes care of provisioning and maintaining the underlying virtual machine cluster, scaling your application, and operational logistics like logging, monitoring, and health management.

6757 questions
2
votes
1 answer

Mongodb Atlas VPC Peering Network not connecting to GCP VPC

(EDITED) I want to connect a GKE pod to Atlas. I have an Atlas db with a VPC peering connection set up to a GCP VPC Network. I am trying to apply things I learnt in these tuts: Configuring VPC Network Peering Controlling Access to VPC Networks When…
Davtho1983
  • 3,827
  • 8
  • 54
  • 105
2
votes
1 answer

Why is @google-cloud/profiler throwing 'permission_denied' errors when running inside a GKE instance?

I have been following the instructions on https://cloud.google.com/profiler/docs/profiling-nodejs#gke to use the gcloud profiler for my nodejs application: I added RUN npm install @google-cloud/profiler to my dockerfile. And I…
2
votes
2 answers

multiple ingress-nginx in kubernetes not validating webhook not working

As stated in the title, I currently have a configuration with 2 ingress-nginx v1.0.0 on gke v1.20.10. When I deploy one alone the configuration is working and I have no issue, but when I deploy the second one the validatingwebhook and then try to…
night-gold
  • 2,202
  • 2
  • 20
  • 31
2
votes
0 answers

How to mount GCP Filestore on remote client outside the VPC

We are working on an Infrastructure as Code for Hybrid Setup (GCP). As part of that we have to mount cloud network Filestore with on-premises Kubernetes cluster. We are maintaining two VPC networks in GCP for on-premises & cloud environments. We…
2
votes
1 answer

Google Cloud Build Timed out 10 min

I try to create a deployment in GKE from BitBucket repository with "New container image" option. Create a deployment Building a container image But I receive ERROR: Timed out when my container is building. Execution details Timed out…
2
votes
1 answer

Accessing Postgres in a GKE cluster from a Dataproc cluster

I have two cluster in GCP. GKE cluster which has only postgres installed using Kubernetes. A dataproc cluster. Now if i make the service of postgres as Internally load balanced to provide security i can access it using my VPN configurations . But…
2
votes
0 answers

Is it possible to use programmatic IAP authentication with Kubernetes Gateway API in GKE?

GKE Ingress is integrated with IAP: https://cloud.google.com/iap/docs/enabling-kubernetes-howto The problem we have is that we need header based routing, which is not supported. Kubernetes Gateway API supports header based routing but I haven't seen…
2
votes
1 answer

Kubernetes Autoscaling using VPA - Off or Auto update mode?

For the needs of a project i have created 2 Kubernetes clusters on GKE. Cluster 1: 10 containers in one Pod Cluster 2: 10 containers in 10 different Pods All containers are connected and constitute an application. What i would like to do is to…
2
votes
2 answers

How to read in file paths into a queue that is in a Kubernetes cluster?

I want to read file paths from a persistent volume and store these file paths into a persistent queue of sorts. This would probably be done with an application contained within a pod. This persistent volume will be updated constantly with new files.…
Adriano Matos
  • 325
  • 3
  • 13
2
votes
2 answers

GKE Ingress cannot find service resource

I have a GKE Ingress, set up according to this tutorial. It worked great for a few weeks, till I wanted to add a new rule to the YAML configuration. The following error is shown and no ingress is created anymore: Error syncing to GCP: error running…
Floris Weers
  • 73
  • 1
  • 7
2
votes
1 answer

Proper way for pods to read input files from the same persistent volume?

I'm new to Kubernetes and plan to use Google Kubernetes Engine. Hypothetically speaking, let's say I have a K8s cluster with 2 worker nodes. Each node would have its own pod housing the same application. This application will grab a file from some…
Adriano Matos
  • 325
  • 3
  • 13
2
votes
0 answers

Snakemake: Conda env download/install extremely slow on GKE

I am currently experimenting executing my snakemake workflow no GKE. I have noticed huge time discrepancies in the time it takes for the same conda environment to be setup on different pods. For example, on this pod the env fastq2bam took almost 40…
Cade M
  • 96
  • 6
2
votes
1 answer

Kubernetes web filtering solution

I'm using GKE and want to restrict my external load balancers from unwanted traffic. I found two options that problematic for me: Nginx plus + maxmind solution for geo filtering - I'm looking for an open source solution (and the maxmind lite is not…
2
votes
1 answer

Mount a kubernetes pod (on GKE) to google cloud storage to persist data

I am trying to persist the data of my pods on GKE (like a docker volume). I came across two methods and I don't know which is the go to method. Using jcsFuse. Using persistent volume and persistent volume claims. Which is the method that would…
2
votes
3 answers

how to connect kubernetes pods (terminal) interactively through api or other?

How to connect the Kubernetes pods (terminal) interactively through API or other? We can expose the pods using services but we need how to connect the pods interactively using API or others.