What's the difference between Apache's Mesos and Google's Kubernetes

前端 未结 7 1711
名媛妹妹
名媛妹妹 2020-12-02 03:30

What exactly is the difference between Apache\'s Mesos and Google\'s Kubernetes? I understand both are server cluster management software. Can anyone elaborate where the mai

7条回答
  •  生来不讨喜
    2020-12-02 04:00

    Kubernetes and Mesos are a match made in heaven. Kubernetes enables the Pod (group of co-located containers) abstraction, along with Pod labels for service discovery, load-balancing, and replication control. Mesos provides the fine-grained resource allocations for pods across nodes in a cluster, and can make Kubernetes play nicely with other frameworks running on the same cluster resources.

    from readme of kubernetes-mesos

提交回复
热议问题