<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Debug School: Agrima Sharma</title>
    <description>The latest articles on Debug School by Agrima Sharma (@agrimasharma031_959).</description>
    <link>https://www.debug.school/agrimasharma031_959</link>
    <image>
      <url>https://www.debug.school/images/lm48hva021Dtlngy9J6LbWgLIj5iSFNWFm1UyFHRIJU/rs:fill:90:90/g:sm/mb:500000/ar:1/aHR0cHM6Ly93d3cu/ZGVidWcuc2Nob29s/L3VwbG9hZHMvdXNl/ci9wcm9maWxlX2lt/YWdlLzE1NS9kOTgz/ZDZhOC04MmYxLTQz/YWItYjQxMS04ZTJl/ODIxM2RhNjQucG5n</url>
      <title>Debug School: Agrima Sharma</title>
      <link>https://www.debug.school/agrimasharma031_959</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://www.debug.school/feed/agrimasharma031_959"/>
    <language>en</language>
    <item>
      <title>What is POD, write a 10 lines explaination on POD by Agrima</title>
      <dc:creator>Agrima Sharma</dc:creator>
      <pubDate>Thu, 20 Oct 2022 06:58:16 +0000</pubDate>
      <link>https://www.debug.school/agrimasharma031_959/what-is-pod-write-a-10-lines-explaination-on-pod-by-agrima-2pld</link>
      <guid>https://www.debug.school/agrimasharma031_959/what-is-pod-write-a-10-lines-explaination-on-pod-by-agrima-2pld</guid>
      <description>&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Pod is a small atomic unit that kubernetes instantiate.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It is the unit of scheduling.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It is a group of one or more containers, with shared resources. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;All the pods are part of the pod network.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Each node can communicate with each other with the use of proxy.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;All containers in a pod share the same ip of the parent pod.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Each pod has an IP and each container inside a pod has a port address, to access a container the following format has to be used : IP_address_of_pod : port_number_of_conatiner.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;If a pod fails, it cannot be redeployed. A pod can only be created.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Stages of a pod are : Pending, running, success/failed.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Kuberentes has the job of keeping the pod running, and keeping it in the desired state. &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>Architecture of Kubernetes and few lines for each component by Agrima</title>
      <dc:creator>Agrima Sharma</dc:creator>
      <pubDate>Thu, 20 Oct 2022 06:46:49 +0000</pubDate>
      <link>https://www.debug.school/agrimasharma031_959/architecture-of-kubernetes-and-few-lines-for-each-component-by-agrima-4okb</link>
      <guid>https://www.debug.school/agrimasharma031_959/architecture-of-kubernetes-and-few-lines-for-each-component-by-agrima-4okb</guid>
      <description>&lt;p&gt;There are main two components - Master node or Control Plane&lt;br&gt;
and worker node &lt;/p&gt;

&lt;p&gt;Master node or Control plane has following components :&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;API server : It is the front end for the Kubernetes control plane and controls the communication from end user.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Cluster store : Keeps a store of the data which makes it persistent.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Scheduler : It keeps a track of newly created Pods and selects a node for them to run on.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Controller manager : It controls the worker nodes and manages them.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Node components consists of the following components :&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;kubelet : It is an agent that runs on each node in a cluster. It makes sure that containers are running in a Pod.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;kubeproxy : It is a network proxy that runs on each node in your cluster &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Pods : It contains the container images.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>What are the 10 feature which we need at prod level, Kubernetes has it ? by Agrima</title>
      <dc:creator>Agrima Sharma</dc:creator>
      <pubDate>Thu, 20 Oct 2022 06:34:29 +0000</pubDate>
      <link>https://www.debug.school/agrimasharma031_959/what-are-the-10-feature-which-we-need-at-prod-level-kubernetes-has-it-by-agrima-2nm</link>
      <guid>https://www.debug.school/agrimasharma031_959/what-are-the-10-feature-which-we-need-at-prod-level-kubernetes-has-it-by-agrima-2nm</guid>
      <description>&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Security&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Scalability&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Auto-healing&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Load-balancing&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Secret management&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;High Availability&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>What is kuberenetes by Agrima</title>
      <dc:creator>Agrima Sharma</dc:creator>
      <pubDate>Thu, 20 Oct 2022 06:31:56 +0000</pubDate>
      <link>https://www.debug.school/agrimasharma031_959/what-is-kuberenetes-by-agrima-139k</link>
      <guid>https://www.debug.school/agrimasharma031_959/what-is-kuberenetes-by-agrima-139k</guid>
      <description>&lt;ul&gt;
&lt;li&gt;&lt;p&gt;It is an open-source management tool used for scaling, deploying and managing containers.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It automates these processes and is known as k8s&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
  </channel>
</rss>
