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.

2352 questions
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

Google Compute health check regarding pods on Google Container Engine

Does a health check concern a whole node or does it concern individual containers? I have created my LoadBalancer service with kubectl create -f web-service.yaml: apiVersion: v1 kind: Service metadata: name: reaction-prod labels: name:…
DiDiev
  • 101
  • 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 & Kubernetes : Is Service's ClusterIP fixed?

When the service is created with ClusterIP Type, the cluster ip is fixed or it could be changed? I wonder that because I want to access the ClusterIP via VPN from my own DC If it is fixed, then the IP address can be configured in client directly
0
votes
1 answer

Check used space in Google Persistent Disk

I have a lot of persistent disks attached to PODs running in GCE(Google Container Engine) How can I check/monitor the used space of them without entering each of the POD? Also is it possible to set up some alert when disk is almost full?
0
votes
0 answers

Access Docker port from host's host

I've set up a simple "Hello world" node server on a docker container running on a Kubernetes pod running on Magnum on a virtual machine. I created the container so that its output is forwarded to a specific port on its host pod (ie docker run -p…
jackwise
  • 259
  • 1
  • 3
  • 9
0
votes
1 answer

Each POD needs a different persistent disk in DaemonSet

I have a cluster with 3 nodes. First I create 3 Persistent Disks in Google Cloud. Now I start a DaemonSet, which would create a POD on each of the node. The POD mounts a persistent disk to store state. The POD is not stateless. In another word, Each…
0
votes
1 answer

Nginx: possible to resolve DNS dynamically in location block?

Currently I am using Nginx with Kubernetes. In my Nginx conf file I have the following proxy pass: location ~ /myPath/([\w-]+)/resources { rewrite ^/myPath/([\w-]+)/resources/(.*)$ /myNewPath/$1/resources/$2 break; proxy_pass…
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

OpenShift Origin and Ceph persistent volume

I have installed OpenShift Origin from latest ansible install. (CentOS 7 - 3 masters and 7 nodes) [root@master-1 ~]# openshift version openshift v1.1.0.1-1-g2c6ff4b kubernetes v1.1.0-origin-1107-g4c8e6f4 etcd 2.1.2 I am trying to create CEPH…
calvix
  • 51
  • 6
0
votes
1 answer

Kubernetes Update Pods in Replication Controller behind Service

We have a deployed API in Kubernetes. The API is deployed via replication controller to pods and a managing rc. I would like to update the configuration to the API pods using rolling-update. I can do that, however the only way I can get the…
four43
  • 2,765
  • 2
  • 16
  • 17
0
votes
2 answers

How to provide Kubernetes api-server credentials to kube2sky inside a docker container in CoreOS

I've got a Kubernetes installation on CoreOS with DNS addon running in a pod. My problem is this: kube2sky cannot access the api-server. By default it uses 127.0.0.1:8080 which is not available to docker containers. Because the api-server is…
Wienczny
  • 1,123
  • 10
  • 13
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…
0
votes
1 answer

Google container engine cluster upgrade failure

We have a Kubernetes cluster running on Google Container Engine. The Container clusters section of the Google cloud console shows that the cluster api version is 1.06. I tried to do a rolling update to upgrade to the latest api version (1.1.1 is…
0
votes
1 answer

Pods fail and restart / exit many times on Google Container Engine

I'm setting up Google Container Engine and have created pods, a resource controller, and a service. However, it never get ready and restarts for many times as follows. (restartPolicy is Always) $ kubectl get pods NAME READY …
Jumpei Ogawa
  • 137
  • 3