Chapter 2. Walking through Kubernetes Concepts
In this chapter, we will cover:
- An overview of Kubernetes control
- Working with pods
- Working with a replication controller
- Working with services
- Working with volumes
- Working with secrets
- Working with names
- Working with namespaces
- Working with labels and selectors
Introduction
In this chapter, we will start by creating different kinds of resources on the Kubernetes system. To realize your application in a microservices structure, reading the recipes in this chapter will be a good start to understanding the concepts of the Kubernetes resources and consolidating them. After you deploy applications in Kubernetes, you can work on its scalable and efficient container management, and also fulfill the DevOps delivering procedure of microservices.
An overview of Kubernetes control
Working with Kubernetes is quite easy, using either Command Line Interface (CLI) or API (RESTful). This section will describe Kubernetes control by CLI. The CLI we used in...