Questions tagged [google-kubernetes-engine]

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.

553 questions
0
votes
2 answers

No --wait or --no-async when creating Google Cloud container node pool?

I'm using Google Cloud / Google Container Engine, and I have infrastructure scripts where I create a cluster and node pools and then perform operations on the node pools once they're setup. In my scripts, I need to make sure that the node pools are…
davewy
  • 165
  • 1
  • 9
0
votes
0 answers

Forwarding incoming Google Cloud Platform traffic to an external host

I was trying out Google Container Engine to test some Docker hosts and decided to just keep running them on my own cluster for now. I've switched DNS over, but I'd like to forward any remaining traffic from stragglers (due to DNS caching on clients)…
0
votes
1 answer

Container Engine/Kubernetes DNS to external

I want to let my containers on Google Container Engine point to a static IP outside of my Container Engine cluster (namely my db). Is it possible for me to prevent the use of an /etc/hosts file or a self managed bind server, and use Google Cloud DNS…
0
votes
2 answers

Kubernetes on GCE randomly stops working

So ultimately what will happen, is everything will work fine, sometimes for days. However, once in a while when I do a deployment of my code (all contained within it's own Docker container, with the images stored on Dockerhub) it will cause…
0
votes
1 answer

Change KUBE_MAX_PD_VOLS env var in master GKE

I have a cluster on GKE with many pods and persistent disks (PD) and cannot deploy anymore. pod failed to fit in any node fit failure on node (XX): MaxVolumeCount The issue should not affect me because I have a 2-code machine and Google recently…
0
votes
1 answer

Connect from MySQL client in one container to MySQL server in other container of same pod

I run two containers in a pod: one is based on debian:wheezy, the other one is mysql:5.6. When I log into the 2nd container, I can invoke the MySQL client mysql without problems. When I log into the 1st container and invoke the MySQL client mysql…
Drux
  • 656
  • 1
  • 9
  • 24
0
votes
1 answer

Old pod not deleted after rolling-update

I've run into a problem doing a rolling-update of our website, which runs in a container in a pod on our cluster, called website-cluster. The cluster contains two pods. One pod has a container which runs our production website and the other has a…
0
votes
1 answer

how to use kubernates with IBM bluemix containers

I am newbie in Kubernetes. I didn't find option for IBM Bluemix container in your_provider for cloud configuration. (I am referring to this Kubernetes Getting Started Guide.) Cloud you please tell me, Is it possible to integrate Bluemix with…
gowri dev
  • 1
  • 1
0
votes
1 answer

kubectl (google container engine): can't retrieve rollout history of deployments

I cannot retrieve the rollout history of my deployments. I get an error: $ kubectl rollout history deployments deployments "letsencrypt-live-deployment": REVISION CHANGE-CAUSE 2 3 deployments…
0
votes
1 answer

Nginx memory profile

I'm using nginx 1.9.2 (with pagespeed and geoIP) inside a docker container, running on Google container engine. It serves as a proxy for another container running php-fpm (php7). I'm also using fastcgi proxy. I find it very slow, so I started…
VsM
  • 123
  • 4
0
votes
1 answer

Hard times installing gogs.io on google container engine

As gogs.io is offering a docker image, i thought it must be straight forward to install it on top of google container engine with kubernetes. After fiddling around a few hours i got two configuration-files now, as i have seen them in an issue thread…
jebbie
  • 161
  • 1
  • 7
0
votes
1 answer

GCE : Do I need a secondary disk for standard persistent disk?

I am using persistent disks to store database files. Google says its Standard persistent disks (HDD) is redundant and reliable Will the disk crash or go into read-only mode? Do I need a secondary disk for backup?
0
votes
1 answer

Container deployment fails because of invalid credentials (invalid_grant)

We have a deployment process in place using GKE for an application, but it was setup by another developer who has since left, and his account was removed. It now seems that a new deployment fails as a result: [2016-01-24 21:02:30,489, INFO] ERROR:…
Dexter J.
  • 93
  • 1
  • 1
  • 3
0
votes
1 answer

Accessing kubernetes (hosted via google container engine) securely using kubectl from a remote server

Hi I'm running into issues trying to access my Kubernetes cluster hosted using Google container engine. I want to use the kubectl from an external/remote server (Circle CI) I have gcloud and kubectl installed and I can access my cluster insecurely…
0
votes
1 answer

Google container engine / Kubernetes 1.1.1 - Service LoadBalancer not being created

I have an existing Kubernetes cluster on Google Container Engine (running api version 1.0.7). When I created 2 service with type LoadBalancer, gke created the necessary forwarding rules to expose them. I changed one of the ip addresses to static and…