-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Kubernetes – An Enterprise Guide
By :

Requirement for the chapter exercises |
Version |
Ubuntu Server |
22.04 or higher |
All exercises use Ubuntu, but most of them will work on other Linux installations.
The code bundle for the book is hosted on GitHub at https://github.com/PacktPublishing/Kubernetes-An-Enterprise-Guide-Third-Edition. We also have other code bundles from our rich catalog of books and videos available at https://github.com/PacktPublishing/. Check them out!
We also provide a PDF file that has color images of the screenshots/diagrams used in this book. You can download it here: https://packt.link/gbp/9781835086957.
Here’s a link to the YouTube channel (created and managed by the authors Marc Boorshtein and Scott Surovich) that contains videos of the labs from this book, so you can see them in action before you start on your own: https://packt.link/N5qjd.
There are a number of text conventions used throughout this book.
CodeInText
: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. For example: “The --name
option will set the name of the cluster to cluster01
, and --config
tells the installer to use the cluster01-kind.yaml
config file.”
A block of code is set as follows:
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: grafana
name: grafana
namespace: monitoring
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: grafana
name: grafana
namespace: monitoring
Any command-line input or output is written as follows:
PS C:\Users\mlb> kubectl create ns not-going-to-work
namespace/not-going-to-work created
Bold: Indicates a new term, an important word, or words that you see on the screen, for example, in menus or dialog boxes, also appear in the text like this. For example: “Hit the Finish Login button at the bottom of the screen.”
Warnings or important notes appear like this.
Tips and tricks appear like this.