The previous chapter described that the Kubernetes API follows REST principles and enables users to manipulate resources.
In this chapter, you will learn how to perform various operations by making HTTP requests directly. During your daily work, you probably will not have to interact directly with the HTTP layer, but it is important to understand how the API works at this level so that you can understand how to use more easily it with a higher-level library.
Examining Requests
Before starting to write your own ...