Kubernetes: Docker cluster management by Google
11–20 of 22 posts
Re: Kubernetes: Docker cluster management by Google
#12Interesting.. the name, kubernetes, is Greek for helmsman or pilot. It is the root of the English word governor, but also of the word cybernetics. This puts the whole Cyborg-Governor-Schwarzenegger-Terminator thing in a whole new light...
Re: Kubernetes: Docker cluster management by Google
#13How does this compare to CoreOS?
If we look at a very high level sketch of what a dynamic cluster system look like (https://speakerdeck.com/jbeda/containers-at-scale?slide=5) I think that CoreOS fits in at the "Managed Base OS" level.
Kubernetes is a Cluster Scheduler and a "Node Container Manager" (called the kubelet in Kubernetes).
(This deck is pre-Kupernetes. The python agent that we released will be replaced with the kubelet at some point soon.)
Re: Kubernetes: Docker cluster management by Google
#14Interesting.. the name, kubernetes, is Greek for helmsman or pilot. It is the root of the English word governor, but also of the word cybernetics. This puts the whole Cyborg-Governor-Schwarzenegger-Terminator thing in a whole new light...
Well, if anyone was going to become Skynet and kill us all, it would be Google. ;)
k-Uber-net-s rhymes well with global domination.
Re: Kubernetes: Docker cluster management by Google
#15How does this compare to CoreOS?
Re: Kubernetes: Docker cluster management by Google
#16Interesting that this is written in Go - I think it's the first open source release from Google that I've seen written in their language. I wonder if anyone in here can comment on whether that is indicative of a trend inside Google - are people writing less Python / Java in there these days?
Re: Kubernetes: Docker cluster management by Google
#17[1]: http://research.google.com/pubs/pub41684.html [2]: https://www.youtube.com/watch?v=XsXlm4wmB6o
Re: Kubernetes: Docker cluster management by Google
#18Interesting that this is written in Go - I think it's the first open source release from Google that I've seen written in their language. I wonder if anyone in here can comment on whether that is indicative of a trend inside Google - are people writing less Python / Java in there these days?
I don't know about "less Python/Java", but Go has been on the rise at Google internally, and has been used in public-facing services for a while.
dl.google.com (which powers Chrome downloads) and the MySQL database management layer for Youtube[0] have both been written in Go for a while now.
Re: Kubernetes: Docker cluster management by Google
#19Re: Kubernetes: Docker cluster management by Google
#20Earlier quoted context omitted.
It's a way of running docker containers at scale.
So is there an example showing how to launch a large number of these. Right now all I see is how to spin up one node.