<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Pods on Nerdsid.com</title><link>https://nerdsid.com/tags/pods/</link><description>Recent content in Pods on Nerdsid.com</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Tue, 05 May 2026 16:46:53 +0000</lastBuildDate><atom:link href="https://nerdsid.com/tags/pods/index.xml" rel="self" type="application/rss+xml"/><item><title>Pods in Kubernetes</title><link>https://nerdsid.com/posts/pods-in-kubernetes/</link><pubDate>Tue, 05 May 2026 16:46:53 +0000</pubDate><guid>https://nerdsid.com/posts/pods-in-kubernetes/</guid><description>&lt;h2 id="task">Task&lt;/h2>
&lt;p>The lab consists of a k8s master node &amp;amp; worker node. You have access to a terminal on the controlplane.&lt;/p>
&lt;h3 id="task-1">Task 1&lt;/h3>
&lt;p>How many pods exist on the system?&lt;/p>

&lt;figure class="terminal no-copy">
 &lt;header class="terminal-header">
 &lt;div class="terminal-controls">
 &lt;span class="dot dot--red">&lt;/span>
 &lt;span class="dot dot--yellow">&lt;/span>
 &lt;span class="dot dot--green">&lt;/span>
 &lt;/div>
 
 &lt;figcaption class="terminal-title">list pods&lt;/figcaption>
 
 &lt;/header>
 &lt;pre>&lt;code>$ k get po
No resources found in default namespace.&lt;/code>&lt;/pre>
&lt;/figure>

&lt;p>Ans: 0&lt;/p>
&lt;h3 id="task-2">Task 2&lt;/h3>
&lt;p>Create a new pod using the nginx image.&lt;/p>
&lt;p>Ans:&lt;/p>

&lt;figure class="terminal no-copy">
 &lt;header class="terminal-header">
 &lt;div class="terminal-controls">
 &lt;span class="dot dot--red">&lt;/span>
 &lt;span class="dot dot--yellow">&lt;/span>
 &lt;span class="dot dot--green">&lt;/span>
 &lt;/div>
 
 &lt;/header>
 &lt;pre>&lt;code>$ kubectl run nginx --image=nginx
pod/nginx created&lt;/code>&lt;/pre>
&lt;/figure>

&lt;p>The basic syntax is:&lt;/p></description></item></channel></rss>