Book Image

Kubernetes Cookbook - Second Edition

By : Hideto Saito, Hui-Chuan Chloe Lee, Ke-Jou Carol Hsu
Book Image

Kubernetes Cookbook - Second Edition

By: Hideto Saito, Hui-Chuan Chloe Lee, Ke-Jou Carol Hsu

Overview of this book

Kubernetes is an open source orchestration platform to manage containers in a cluster environment. With Kubernetes, you can configure and deploy containerized applications easily. This book gives you a quick brush up on how Kubernetes works with containers, and an overview of main Kubernetes concepts, such as Pods, Deployments, Services and etc. This book explains how to create Kubernetes clusters and run applications with proper authentication and authorization configurations. With real-world recipes, you'll learn how to create high availability Kubernetes clusters on AWS, GCP and in on-premise datacenters with proper logging and monitoring setup. You'll also learn some useful tips about how to build a continuous delivery pipeline for your application. Upon completion of this book, you will be able to use Kubernetes in production and will have a better understanding of how to manage containers using Kubernetes.
Table of Contents (11 chapters)

Working with the private Docker registry

Once you start to build your microservice application via Docker, you'll need to have a Docker registry to put your container image in. Docker hub offers you free public repositories, however, in some cases you might want to make your image private due to business needs or organization policy.

Docker hub offers the private repository, which only allows authenticated users to push and pull your images, and is not visible to other users. However, there is only one quota (repository) for a free plan. You may pay to increase the number of private repositories, but if you adopt the microservices architecture, you will need a large number of private repositories:

Docker hub private repositories price list

Docker hub with a paid plan is the easiest way to set up your private registry, but there are some other ways to set up your own private...