Google Kubernetes Engine is a cluster manager and orchestrator for running Docker containers. It schedules your containers into the cluster and manages them automatically based on requirements you define (such as CPU and memory). It's built on the open source Kubernetes system, giving you the flexibility to take advantage of on-premises, hybrid, or public cloud infrastructure. It was formerly called Google Container Engine.
Questions tagged [google-kubernetes-engine]
553 questions
1
vote
2 answers
Which non-root user should I use on Google Kubernetes Engine?
When configuring a container process to run as a non-root user on Kubernetes, does the user need to exist on the host? If yes, which user id is appropriate to use when the host node is managed by Google Kubernetes Engine?
Google Cloud's recommended…

Niels Søholm
- 35
- 1
- 7
1
vote
1 answer
How to deploy microservices in GCP?
What I have currently..
... is an application with a microservices architecture, where the different services communicate with a gateway through GRPC, with the gateway serving REST endpoints.
I'm deploying this system on GCP. Currently, each…

Chidi Williams
- 111
- 2
1
vote
0 answers
Define loadBalancerIP via its GCP URI
I am configuring my GKE service to work with internal load balancer as described in the GCP docs:
apiVersion: v1
kind: Service
metadata:
name: [NAME]
annotations:
cloud.google.com/load-balancer-type: "Internal"
spec:
type: LoadBalancer
…

bereal
- 131
- 1
- 4
1
vote
2 answers
Can you use SSL termination in conjunction with a Layer 4 load balancer?
I have an internal load balancer to balance internal traffic to my Kubernetes cluster (hosted in GKE). According to the Internal Load Balancer documentation, it only balances L3/L4 traffic.
I need to support HTTPS traffic but an L3/L4 load balancer…

swigganicks
- 221
- 3
- 8
1
vote
1 answer
Google Cloud Ingress returning 404 for externalName
trying to setup my GC Kubernetes. Using the Ingress controller for the load balancing. While it works perfect for services connected to containers running on my kubernetes, I struggle to get it working for my external wordpress.
I followed the…

Andreas H
- 11
- 3
1
vote
0 answers
Configure Google Cloud Storage plugin with Curator cronjob on GKE Elasticsearch cluster
I deployed an Elasticsearch cluster on GKE, using this project as a starting point: https://github.com/pires/kubernetes-elasticsearch-cluster
I would like to configure two Curator jobs by using Kubernetes CronJob objects, to snapshot the indices,…

syst0m
- 131
- 1
- 4
1
vote
1 answer
google cloud - kubectl - ingress - "default backend - 404"
I have a google cloud kubernetes cluster,
service definition:
apiVersion: v1
kind: Service
metadata:
creationTimestamp: 2018-05-14T18:53:57Z
labels:
run: sv-security
name: sv-security
namespace: default
resourceVersion: "554"
…

Vandeperre Maarten
- 113
- 1
- 5
1
vote
2 answers
GKE Clusters not coming back after project restore
I deleted my GCP project (whoops!) and then restored it about 30 minutes later. GCE VM instances did not start automatically, but I started them. I also had to manually enable the compute API for some reason (gcloud services enable…

Matt Dodge
- 121
- 5
1
vote
1 answer
How to access apps that have been deployed in k8s on Google Cloud Platform using a Google Cloud Engine HTTP(S) Load Balancer?
Aim: to access apps that reside in a kubernetes (k8s) namespace using an HTTP(S) Load Balancer (HLB)
Methods
TCP load balancing (TLB) (layer 4)
A k8s cluster has been created on Google Cloud Platform (GCP)
A static IP was created
A TLB was created,…

030
- 5,901
- 13
- 68
- 110
1
vote
1 answer
Mongodb in Kubernetes Timeouts when inserting large amount of data
We have an api in running which receives once a day multiple batches of large data that are inserted in a mongodb.
We use the cvallance/mongo-k8s-sidecar for the replicationset configuration
This works perfectly on a local mongodatabase.
there is…

Boas Enkler
- 237
- 2
- 10
1
vote
1 answer
Automatically created ingress firewall rules for Google Kubernetes Engine cluster
When deploying a cluster to a single zone/network, there are some firewall rules automatically created by GKE. Trying to get clarification for all of these currently, but failing with one of these rules.
Rule 1: For this I need clarification
Rule…

Iso J
- 23
- 3
1
vote
1 answer
When creating a regional node pool with gcloud. The nodes do not register
When running the following gcloud command on my existing GKE cluster…

Stan Bondi
- 123
- 1
- 7
1
vote
2 answers
kubernetes load balancer with sticky session always send traffic to one pod
I have a problem with my load balancer setup where it always redirect most traffic (like 99%) to one pod. Basically the infrastructure is as shown on this diagram. The objective is I need sticky session to be enabled, whether on nginx or Google…

spondbob
- 123
- 1
- 5
1
vote
3 answers
Add IP origin to nginx header
I have a situation with ip_hash on nginx for sticky session where it always direct the traffic to one server only. The nginx is running behind a Google Cloud load balancer, from nginx it hits my app's GC Kubernetes load balancer before actually…

spondbob
- 123
- 1
- 5
1
vote
1 answer
Upload large online files to google cloud
I would like to upload large image files to google cloud for machine learning purpose on RStudio.
Each image zip is around 4.7gb and it takes longer to unzip than to download. I would like to know is there a way that I can upload the image files to…

lydias
- 113
- 4