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
0
votes
1 answer
GKE - network is not ready: Kubenet does not have netConfig
We are running 11 nodes on GKE and get this error between a few hundred and a thousand times a day:
Runtime network not ready: Network plugin is not ready: Kubenet does not have netConfig. This is most likely due to lack of PodCIDR
I couldn't find…

Milkncookiez
- 203
- 2
- 8
0
votes
1 answer
How to set different labels on GKE instances of same cluster?
In our GCP project we are working on a project to assist organization and cost management.
We got a situation on one of our use cases.
Multiple projects node pools are present in one of our GKE cluster. All the instances under this cluster are…

xyphan
- 1
- 2
0
votes
1 answer
Binding Workload Identity service-account to a GKE service-account with Deployment Manager?
I've enabled Workload Identity on our GKE cluster. Now I'm deploying an app to GKE which uses WI to authenticate to another Google service. I've already used Deployment Manager to create an IAM Service Account with the right access to the Google…

Martijn Heemels
- 7,728
- 7
- 40
- 64
0
votes
1 answer
Private Google Kubernetes cluster can't download images from Google Container Engine
I am trying to set up our private Kubernetes cluster in Google Cloud to connect to Google Container Engine. I'm able to deploy sample images in the cluster without a problem, e.g. gcr.io/google-samples/hello-app:2.0. But when I try to deploy one of…

Matt Browne
- 153
- 6
0
votes
0 answers
Cloud Run as a proxy
I am using Cloud Run as a proxy.
I am using NGINX image as a reverse proxy for my Kubernetes Services. Previously I was hitting my External Load Balancer IP. Now I want to hit my Internal Load Balancer IP with the same. I have created an Internal…

Abhinav
- 21
- 3
0
votes
1 answer
GCP is charging fees for GKE Cluster Management fees
When we check GCP calculator, GKE cluster management fees is 0. But when running the clusters I'm being charged about $2.33 every day for GKE cluster management fees...
I wonder if I made a mistake when creating GKE cluster. Any explanation?
I…

user630702
- 495
- 10
- 32
0
votes
1 answer
ingress-nginx, GCE, and static IP
So, I would like to have a static IP that points to my nginx ingress LB.
gcloud compute addresses create test-ip --global
gcloud compute addresses describe test-ip --global
Which provides me with a static IP that I can now use.
detailed…

csgeek
- 167
- 8
0
votes
1 answer
GKE create a private cluster failed
I'm following this topic to Creating GKE private clusters with network proxies for controller access, it stuck at create a private cluster via run command:
gcloud container clusters create frobnitz \
--master-ipv4-cidr=172.16.0.64/28 \
…

William
- 36
- 1
0
votes
1 answer
Permission issues in GCP Container Registry
We need some help.
We don't see any docker registry in GCP. It says that it has permission issues but we have enough permissions to do everything in there. Also we cannot connect any cluster in GKE.
Could it be some technical problems on it that…

Pavel Popov
- 11
- 2
0
votes
1 answer
Is there a way to undelete deleted permissions in cloud IAM Admin on the google cloud platform?
I have accidentally locked myself out of my own project. It is still running with cloud SQL instances and a Kubernetes cluster, but I cannot view anything about it or stop it.
I was removing permissions which I thought were just for bigquery, but it…

GCPUser
- 1
0
votes
1 answer
How can I run a containerized task in the cloud 24/7
I have just begun to play around with various cloud vendors (AWS, GCP, etc) to get a better understanding of what they have to offer.
This is what I am looking to do: I have a task that runs 24/7 that I want to containerize and deploy to the cloud.…

KED
- 13
- 2
0
votes
1 answer
gcsfuse terminating itself on GKE
I have gcsfuse in a deployment on GKE, it was working fine and without any changes in the config it started failing since yesterday.
Received signal 15; terminating.
I have it deployed in 2 different clusters, first I thought it was related to the…

Ivan Torrellas
- 11
- 2
0
votes
1 answer
How can I access logs of controller-manager and api-server k8s on GKE?
So for AKS I could use View Azure Kubernetes Service (AKS) controller logs - Azure Kubernetes Service and for EKS I could enable logging for these components using this official tutorial.
Is there something similar for GKE?
0
votes
1 answer
Is it possible to install Kubernetes manually in my existing GCP VM instance?
I am a newbie in Kubernetes. I have hosted my microservice application on the GCP VM instance. I want to use Kubernetes for deploying, managing, and scaling my applications. GCP provides GKE for that, but if I don't want to use that and installing…

Bhargav Patel
- 3
- 4
0
votes
1 answer
How to get Kubernetes Services IP address using GCP APIs
I need to get the Kubernetes Service IP address (internal and external) using the Google Cloud Provider APIs.
How do I get the Kubernetes Services IP address using GCP APIs?
Thanks