Best of KubernetesDecember 2020

  1. 1
    Article
    Avatar of ossOpen Source Way·5y

    10 Raspberry Pi project ideas from 2020

    The Raspberry Pi is the small, low-cost, single-board PC that took the world by storm when it was released in 2012. Since then, educators, students, makers, and tinkerers have used the various Raspberry Pi models for many, many unique and interesting projects. Over the course of 2020, Opensource.com published many great articles about Raspberry Pi projects; below, I explore the top 10.

  2. 2
    Article
    Avatar of devtoDEV·5y

    Wait, Docker is deprecated in Kubernetes now? What do I do?

    Kubernetes is an infra orchestration tool that groups up many different compute resources such as virtual/physical machines. In this architecture, Docker, or a container runtime, is used only to run those applications in an actual host by being scheduled by Kubernetes control plane.

  3. 3
    Article
    Avatar of k8sKubernetes·5y

    Blog: Don't Panic: Kubernetes and Docker

    Kubernetes is deprecating Docker as a container runtime after v1.20. Docker is still a useful tool for building containers, and the images that result from running docker build can still run in your Kubernetes cluster. If you’re rolling your own clusters, you will need to make changes to avoid your clusters breaking.

  4. 4
    Article
    Avatar of ossOpen Source Way·5y

    6 container concepts you need to understand

    Containers are the solution to problems inherited from monolithic architectures. Containers share a kernel with the host, which allows them to use fewer resources than a virtual machine (VM) would require. Kubernetes provides a holistic approach to managing containers across a cluster to enable features like autoscaling.