zoukankan      html  css  js  c++  java
  • Kubeadm and Kops

    Kubeadm是Kubernetes官方推出的快速部署Kubernetes的集群工具,其思路是将Kubernetes相关服务容器化以简化部署。

    With the release of kubeadm and kops, however, this became significantly easier.

    kops is a tool that fully automates the creation of a Kubernetes cluster (currently supported on AWS),

    analogous to the way users of GKE are able to create one-click Kubernetes clusters.

    In other words, kops handles infrastructure orchestration and installs all necessary software.

    This isn’t, however, what every user requires.

    For those desiring automation but also a certain level of flexibility, kubeadm is a far better option.

    kubeadm does not (and will likely never) manage infrastructure provisioning,

    but can easily be integrated into an orchestration tool. Most excitingly,

    kubeadm promises to become more modular and incorporate features such as component updates.

    As these changes come to fruition, users will have another mode by which they can have self-hosted Kubernetes clusters.

    kubeadm would not provision machines. Instead, the only assumption it makes is that the user has some computers running Linux.

    Kubeadm VS Kops

    • kubeadm需要预安装kubectl和kubelet,kops需要预安装kubectl;
    • kubeadm只负责在部署Kubenetes在computers running Linux,不负责infrastructure orchestration,kops负责infrastructure orchestration和Kubenetes orchestration;
    • kubeadm以容器化的方式运行Kubernetes服务,kops以普通服务的方式运行Kubernetes;
    • Integration with kubeadm kops now uses kubeadm for some RBAC related functionality;

    Refers:

    http://blog.kubernetes.io/2016/09/how-we-made-kubernetes-easy-to-install.html

    http://blog.kubernetes.io/2017/01/stronger-foundation-for-creating-and-managing-kubernetes-clusters.html

  • 相关阅读:
    Jquery DataTable初探
    小程序-组件component和模版template的选择和使用
    小程序-canvas在IOS手机层级最高无法展示问题
    小程序-二维码生成
    css深入理解之 border
    css那些事儿4 背景图像
    css那些事儿3 列表与浮动
    css那些事儿2 经典两列布局
    css那些事儿2 盒子模型
    css那些事儿1 css选择符与管理
  • 原文地址:https://www.cnblogs.com/edisonxiang/p/7833145.html
Copyright © 2011-2022 走看看