Questions tagged [kubernetes]

Kubernetes is an open source orchestration system for Docker containers. It handles scheduling onto nodes in a compute cluster and actively manages workloads to ensure that their state matches the users declared intentions. Using the concepts of "labels" and "pods", it groups the containers which make up an application into logical units for easy management and discovery.

Kubernetes is an open source orchestration system for Docker containers. It handles scheduling onto nodes in a compute cluster and actively manages workloads to ensure that their state matches the users declared intentions. Using the concepts of "labels" and "pods", it groups the containers which make up an application into logical units for easy management and discovery.

For more details, visit the official Kubernetes page.

2075 questions
2
votes
1 answer

GKE ingress unable to connect to healthy service

I've been following the tutorial here: https://medium.com/@nithinmallya4/deploying-a-rails-application-to-google-container-engine-with-kubernetes-b08b2de353fc With their code base: https://github.com/nmallya/gkedemoapp You can see how this…
2
votes
1 answer

Can't see pod logs in Stackdriver UI for cluster deployed on GKE

I deployed an Elasticsearch cluster on Google Kubernetes Engine. I am able to view logs of specific pods with the 'kubectl logs' command from my PC. >kubectl logs es-data-0 ... [2018-06-18T07:35:11,220][INFO ][o.e.m.j.JvmGcMonitorService]…
2
votes
1 answer

Kubernetes Resource Quotas on Google Kubenetes Engine

Brand new to kubernetes here. I suspect there could be a simple answer to this. Is there a way to disable resource quotas at the cluster level or at least reduce the resource quotas requested by the kube-system pods for very small clusters when…
2
votes
1 answer

How to do continuous delivery with Kubernetes?

I am trying to run Kubernetes namespace setup and application deployment as part of a pipeline. Normally "apply" commands work with idempotency. Now, if I change a ConfigMap, the pods need to be restarted to pick the change. But "apply"-ing the…
user6317694
  • 131
  • 3
2
votes
2 answers

Unable to access internet on pod in private GKE cluster

I'm currently unable to access/ping/connect to any service outside of Google from my private Kubernetes cluster. The pods are running Alpine linux. Routing Tables /sleepez/api # ip route show table all default via 10.52.1.1 dev eth0 10.52.1.0/24 dev…
2
votes
1 answer

Tool for deploying resources to kubernetes cluster

We have a rather extensive set of yaml configuration files that we use to define the deployments, stateful sets, namespaces, services, etc. resources that should be created in the kubernetes API on a cluster. We have experimented with a few tools…
joshperry
  • 325
  • 1
  • 2
  • 14
2
votes
1 answer

Gunicorn does not repondes more than 6 requests at a time

To give you some context: I have two server environments running the same app. The first, which I intend to abandon, is a Standard Google App Engine environment that has many limitations. The second one is a Google Kubernetes cluster running my…
2
votes
1 answer

Kubernetes minikube fails to start with error: Invalid user docker from 127.0.0.1

My server is fedora 27 with SELinux enforced. I am setting Kubernetes. My setup fails early as I can't even create clusters. Below is the error I get: % minikube start --vm-driver kvm2 --logtostderr --v=10 I0214 12:44:01.346196 10856…
gabx
  • 155
  • 1
  • 8
2
votes
1 answer

issue in installing ambassador over kubernetes

I am trying to install ambassador over kubernetes. I am getting the ambassdor pods status as CrashLoopBackOff http://paste.openstack.org/show/658099/ steps followed for installation: https://www.getambassador.io/user-guide/getting-started 1) kubectl…
Ashish Karki
  • 71
  • 1
  • 3
2
votes
1 answer

How/where to get the ssh keys used when creating an aks cluster with "--generate-ssh-keys" option

We have created a AKS cluster using az aks create .... --generate-ssh-keys ..... How/where can we find the SSH keys that were generated, so we can use them? Thankx
JoaoCC
  • 295
  • 1
  • 3
  • 8
2
votes
2 answers

proper shutdown of a kubernetes cluster

Imagine the following scenario: You run a kubernetes cluster in your datacenter, which was deployed with kubeadm. It consists of one masternode (running etcd as a static pod, as deployed by kubeadm) and 3 worker nodes the nodes as virtual machines…
Jeroen Jacobs
  • 1,276
  • 3
  • 15
  • 24
2
votes
0 answers

Multi-Tenancy (Multi-user) GPU Container Infrastructure Solution

What we need: Several teams from different companies want to share our GPUs for deep learning tasks (three computers with several GPUs each). So manage multiple GPUs for multiple users. Different teams should not have access to the data of other…
2
votes
2 answers

Broken GKE Backend Health Check Default

I have read this and I understand (I think) the differences between Kubernetes livenessProbes, and the GKE LoadBalancer health checks. My problem is this: I am exposing most of my Kube services via NodePort, which by default creates a new Backend…
2
votes
4 answers

Errors when using Google Container Engine (GKE) with Google Container Registry (GCR)

In setting up our company infrastructure on Google Container Engine, I'm attempting to place our Docker images in Google Container Registry. When I attempt to start a Deployment using the images hosted on GCR, I'm getting the following errors on…
2
votes
1 answer

GCP LB with static website and kubernetes

I am trying to migrate an application from AWS to Googles container engine. I have an S3 website (static files) living at my.domain.example and a backend living at the same url, but at the /api path. Basically, i route traffic to the backend if the…