Getting Started There are a lot of different ways to use Kubernetes. Even a quick look at the documentation shows that the number of options for building and managing Kubernetes clusters is overwhelming. The good news is that there are plenty of tools that can simplify the complex task of building clusters. The first time I used […]
Kubernetes
Deploy Your First Deep Learning Model On Kubernetes With Python, Keras, Flask, and Docker
So Easy Even Your Boss Can Do It! This post demonstrates a *basic* example of how to build a deep learning model with Keras, serve it as REST API with Flask, and deploy it using Docker and Kubernetes. This is NOT a robust, production example. This is a quick guide for anyone out there who has heard about […]
Google takes a step back from running the Kubernetes development infrastructure
Google today announced that it is providing the Cloud Native Computing Foundation (CNCF) with $9 million in Google Cloud credits to help further its work on the Kubernetes container orchestrator and that it is handing over operational control of the project to the community. These credits will be split over three years and are meant to cover the infrastructure costs of building, testing and […]
8 Emerging Trends in Container Orchestration
Containers are no longer a niche technology—more than 35 percent of Datadog customers with at least 500 hosts have adopted Docker, according to our latest research on Docker usage in the real world. As containerization becomes more mainstream, we decided to examine the ecosystem of technologies for orchestrating container workloads. Platforms such as Kubernetes, Mesos, Amazon […]
How Kubernetes became the solution for migrating legacy applications
You don’t have to tear down your monolith to modernize it. You can evolve it into a beautiful microservice using cloud-native technologies. 20 Feb 2018 Swapnil Bhartiya Feed 73 up Image by : opensource.com x Get the newsletter Join the 85,000 open source advocates who receive our giveaway alerts and article roundups. In the early days of […]
Kubernetes on Ubuntu
There are multiple ways to run a Kubernetes cluster with Ubuntu. These pages explain how to deploy Kubernetes on Ubuntu on multiple public and private clouds, as well as bare metal. Official Ubuntu Guides Third-party Product Integrations Developer Guides Where to find us Official Ubuntu Guides The Canonical Distribution of Kubernetes The latest version of […]
Kubernetes: Picking the Right Solution
Kubernetes can run on various platforms: from your laptop, to VMs on a cloud provider, to a rack of bare metal servers. The effort required to set up a cluster varies from running a single command to crafting your own customized cluster. Use this guide to choose a solution that fits your needs. If you […]
What is Flannel for Kubernetes?
Flannel is a simple and easy way to configure a layer 3 network fabric designed for Kubernetes. How it works Flannel runs a small, single binary agent called flanneld on each host, and is responsible for allocating a subnet lease to each host out of a larger, preconfigured address space. Flannel uses either the Kubernetes API or etcd directly […]
Kubernetes Cluster Networking
Kubernetes approaches networking somewhat differently than Docker does by default. There are 4 distinct networking problems to solve: Highly-coupled container-to-container communications: this is solved by pods and localhostcommunications. Pod-to-Pod communications: this is the primary focus of this document. Pod-to-Service communications: this is covered by services. External-to-Service communications: this is covered by services. Docker model Kubernetes model How to implement the […]