Files
container.training/slides/kube/setup-k8s.md
Bridget Kromhout 4abc8ce34c Proper attribution
2018-02-27 14:38:32 -06:00

1.6 KiB

Setting up Kubernetes

  • How did we set up these Kubernetes clusters that we're using?

--

  • We used kubeadm on freshly installed VM instances running Ubuntu 16.04 LTS

    1. Install Docker

    2. Install Kubernetes packages

    3. Run kubeadm init on the master node

    4. Set up Weave (the overlay network)
      (that step is just one kubectl apply command; discussed later)

    5. Run kubeadm join on the other nodes (with the token produced by kubeadm init)

    6. Copy the configuration file generated by kubeadm init


kubeadm drawbacks

  • Doesn't set up Docker or any other container engine

  • Doesn't set up the overlay network

  • Scripting is complex
    (because extracting the token requires advanced kubectl commands)

  • Doesn't set up multi-master (no high availability)

--

  • "It's still twice as many steps as setting up a Swarm cluster 😕" -- Jérôme

Other deployment options

  • If you are on Azure: AKS

  • If you are on Google Cloud: GKE

  • If you are on AWS: EKS or kops

  • On a local machine: minikube, kubespawn, Docker4Mac

  • If you want something customizable: kubicorn

    Probably the closest to a multi-cloud/hybrid solution so far, but in development

  • Also, many commercial options!