forked from lerndevops/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
lerndevops
authored
Mar 22, 2020
1 parent
cb08d52
commit 6f0397a
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
|
||
List top utilized pods ( metrics server ) | ||
Etcd snapshot | ||
Create a cluster master and worker node | ||
Kubelet is down on worker node, troubleshoot | ||
Daemonset to run nginx pod on all the worker nodes | ||
Increase the replicas from 2 to 3 of nginx | ||
Create a pod with pv with hostpath type | ||
Broken cluster nothing is running master nor worker fix it | ||
Create a mongodb pod | ||
Assign a pod to the node with disk=ssd | ||
--- Make the worker node unavailable and reschedule the pod running on it to another node | ||
Create a init container to create a file with the given pod spec file, where the other container will run and verify whether the file is existing or not | ||
Create a static pod - place the pod spec in the /etc/kubelet/manifest/ and restart the kubelet on the worker node | ||
Create a secret of user and use it in a pod and also expose to a pod as a env variable | ||
List the pods in kube-system namespace which are using baz service | ||
List the top cpu utilization pod under the namespace | ||
Assign a pod to the node where particular pod is running | ||
|
||
|
||
Sort the pods of namespace in alphabetical order | ||
Sort the pv's according to the storage capacity | ||
Create a nginx pod to show the dns is working |