Re: [kubernetes-users] Docker vs K8s API

2017-06-01 Thread 'Tim Hockin' via Kubernetes user discussion and Q
It runs faster or it starts faster? The gif clear too quickly for me to see. On Thu, Jun 1, 2017 at 9:09 PM, Diego Lapiduz wrote: > Hi y'all, (k8s noob here so forgive me if this is something that I am > doing obviously wrong) > > I am trying to run a short lived task and I

[kubernetes-users] Docker vs K8s API

2017-06-01 Thread Diego Lapiduz
Hi y'all, (k8s noob here so forgive me if this is something that I am doing obviously wrong) I am trying to run a short lived task and I am trying to move from Docker Swarm to Kubernetes. An interesting issue that I am finding is that running the same Docker image on the same minikube cluster

Re: [kubernetes-users] Kubeadm is creating my kube-system PODs with an odd IP

2017-06-01 Thread 'Tim Hockin' via Kubernetes user discussion and Q
on your master: ip addr show ? On Thu, Jun 1, 2017 at 8:59 AM, Prior, Mark wrote: > Hi, > > > > I am currently trying to install K8s using Kubeadm on a Centos7 VM (in > VMware Worstation) and am getting what i think is a strange result. The > kube-system PODs are

Re: [kubernetes-users] Best way to get job resource usage?

2017-06-01 Thread Rodrigo Campos
You can access the cadvisor interface with a browser, and see them all (don't know if it's different in mini-kube, though) On Wednesday, May 31, 2017, Talin wrote: > I'd like to use the cAdvisor API myself, but I haven't been able to get it > to work. When I access the

Re: [kubernetes-users] how to add kubernetes liveness probe to check if a process is alive

2017-06-01 Thread Matthias Rampke
Note that the probe command is executed directly, not in a shell, but you are using a pipe. try this: command: - sh - -ec - ps -ef | grep my_process_name aside from that - don't run multiple processes in a container; use multiple containers in a pod instead. Make sure that when your process

Re: [kubernetes-users] how to add kubernetes liveness probe to check if a process is alive

2017-06-01 Thread Rodrigo Campos
Did it worked? :) (note that both formats, Guangya Liu used and I, are valid in yaml for arrays, so both should be fine, choose the one you prefer). On Thu, Jun 01, 2017 at 07:42:07AM +0800, Guangya Liu wrote: > Yes, should use array, here is an example: > > ``` > > livenessProbe: exec: >

[kubernetes-users] Kubeadm is creating my kube-system PODs with an odd IP

2017-06-01 Thread Prior, Mark
Hi, I am currently trying to install K8s using Kubeadm on a Centos7 VM (in VMware Worstation) and am getting what i think is a strange result. The kube-system PODs are all set up with a public IP address that is completely unrelated to my set up. I have explored a number of avenues to

Re: [kubernetes-users] Re: 21-based K8s Community Micro Tasks

2017-06-01 Thread Ryan Quackenbush
Justin: I’m sorry to hear you had trouble signing up, initially. Currently, we’re using K8sPort.org to request the registration. By requesting at that site, a few folks are automatically notified and can send you an invite through the hub, itself. The “instant signup” was discussed, early on,

[kubernetes-users] Re: Google Compute Engine is unusable, repeated "Failed: Create VM"

2017-06-01 Thread Evan Jones
A friend of mine ran into something that sounds suspiciously similar to this. I don't recall the details about it, but he did tweet about it: https://twitter.com/nicksantos/status/86997848164864 I seem to recall after the free trial expired, they literally had to delete everything and

Re: [kubernetes-users] Deploy pods on raspberry Pi not in same private network.

2017-06-01 Thread Matthias Rampke
There is no "step by step" guide for this, because this is an unorthodox use case. I would suggest you familiarise yourself with Kubernetes' networking model and implementations thereof, so you can make an informed decision about possible solutions. /MR On Thu, Jun 1, 2017 at 9:09 AM

[kubernetes-users] Google Compute Engine is unusable, repeated "Failed: Create VM"

2017-06-01 Thread Trifork AB
Hi, We had a few projects running with our free trial, however our trial expired and upgraded the account. Now all of our clusters became unusable and we can see in our activity that our virtual machines are failing to be created. The error message is 400: The resource

Re: [kubernetes-users] Deploy pods on raspberry Pi not in same private network.

2017-06-01 Thread abhizersaifee80
Can you please send some link on how to create cluster over public network. -- You received this message because you are subscribed to the Google Groups "Kubernetes user discussion and Q" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [kubernetes-users] Deploy pods on raspberry Pi not in same private network.

2017-06-01 Thread Matthias Rampke
You can span a cluster over public networks if you use some kind of overlay network (like flannel), as long as the nodes can talk to the apiserver and each other. When a node disappears (stops checking in with the apiserver), it will eventually be drained and the pods on it deleted; controllers