Add a couple of Kubernetes questions and exercises

Also updated CKA page.
This commit is contained in:
abregman
2022-10-16 18:19:39 +03:00
parent 9d018343c0
commit 64e6614680
7 changed files with 358 additions and 81 deletions

View File

@@ -0,0 +1,11 @@
# Labels and Selectors 101
## Objectives
1. How to list all the Pods with the label "app=web"?
2. How to list all objects labeled as "env=staging"?
3. How to list all deployments from "env=prod" and "type=web"?
## Solution
Click [here](solution.md) to view the solution.

View File

@@ -0,0 +1,13 @@
# Labels and Selectors 101
## Objectives
1. How to list all the Pods with the label "app=web"?
2. How to list all objects labeled as "env=staging"?
3. How to list all deployments from "env=prod" and "type=web"?
## Solution
`k get po -l app=web`
`k get all -l env=staging`
`k get deploy -l env=prod,type=web`