<?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: PrashanthL</title>
    <description>The latest articles on Debug School by PrashanthL (@prashanthlinga_252).</description>
    <link>https://www.debug.school/prashanthlinga_252</link>
    <image>
      <url>https://www.debug.school/images/M1iuNu7Oiy15uLXFCla8jLkWMRGRqxRJDaflKxvv4_Y/rs:fill:90:90/g:sm/mb:500000/ar:1/aHR0cHM6Ly93d3cu/ZGVidWcuc2Nob29s/L3VwbG9hZHMvdXNl/ci9wcm9maWxlX2lt/YWdlLzczMy8xOTkx/ZTk1Yy04Yjg2LTRh/YmQtOWZlZC02Yjg4/ZmVjMjYwNDgucG5n</url>
      <title>Debug School: PrashanthL</title>
      <link>https://www.debug.school/prashanthlinga_252</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://www.debug.school/feed/prashanthlinga_252"/>
    <language>en</language>
    <item>
      <title>Kubernetes Day-3 Summary</title>
      <dc:creator>PrashanthL</dc:creator>
      <pubDate>Wed, 18 Oct 2023 12:16:12 +0000</pubDate>
      <link>https://www.debug.school/prashanthlinga_252/kubernetes-day-3-summary-105</link>
      <guid>https://www.debug.school/prashanthlinga_252/kubernetes-day-3-summary-105</guid>
      <description>&lt;p&gt;Today I learnt the following topics&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Daemon Set&lt;/li&gt;
&lt;li&gt;Job &amp;amp; CronJob&lt;/li&gt;
&lt;li&gt;ConfigMap&lt;/li&gt;
&lt;li&gt;Services&lt;/li&gt;
&lt;li&gt;Ingress &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Daemon Set&lt;/strong&gt;&lt;br&gt;
To ensure specific pod runs on all or subset of nodes within a cluster. &lt;br&gt;
&lt;code&gt;kubectl get ds&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Job &amp;amp; CronJob&lt;/strong&gt;&lt;br&gt;
Job is onetime activity. &lt;br&gt;
&lt;code&gt;kubectl get jobs&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;ConfigMap&lt;/strong&gt;&lt;br&gt;
Stored in cluster, commands same.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Services&lt;/strong&gt;&lt;br&gt;
We call it as Service and not Load Balancer&lt;br&gt;
Service = Network Load Balancer&lt;br&gt;
Ingress = Application Load Balancer&lt;/p&gt;

&lt;p&gt;&lt;code&gt;kubectl create svc -&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Ingress *&lt;/em&gt;&lt;br&gt;
Ingress is a way for enabling traffic. Also helps in routing. &lt;br&gt;
Ingress means a rule. It is an API object. &lt;br&gt;
Ingress controller is exposed with the load balancer. &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Path Based&lt;/li&gt;
&lt;li&gt;Name Based&lt;/li&gt;
&lt;li&gt;TLS Based&lt;/li&gt;
&lt;/ol&gt;

</description>
    </item>
    <item>
      <title>Kubernetes Day-2 Summary</title>
      <dc:creator>PrashanthL</dc:creator>
      <pubDate>Tue, 17 Oct 2023 11:57:11 +0000</pubDate>
      <link>https://www.debug.school/prashanthlinga_252/kubernetes-day-2-summary-13fp</link>
      <guid>https://www.debug.school/prashanthlinga_252/kubernetes-day-2-summary-13fp</guid>
      <description>&lt;p&gt;Today I have learnt the following topics&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Namespaces&lt;/li&gt;
&lt;li&gt;Pod&lt;/li&gt;
&lt;li&gt;Replica sets&lt;/li&gt;
&lt;li&gt;Deployments&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;code&gt;Kubectl api-resources&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Logical separation are called Namespaces&lt;br&gt;
Pod is created in Namespace, worker is created in cluster&lt;/p&gt;

&lt;p&gt;Any object in Namespace is shown as True&lt;br&gt;
Any object in cluster is shown as false&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Secret Formula - *&lt;/em&gt;&lt;br&gt;
C  - Create&lt;br&gt;
R - Get, Describe&lt;br&gt;
U - Edit, Apply&lt;br&gt;
D - Delete&lt;/p&gt;

&lt;p&gt;** More detail son Pod**&lt;br&gt;
To be added here&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Replica Set&lt;/strong&gt;&lt;br&gt;
To be added here&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Deployment has 5 features&lt;/strong&gt;&lt;br&gt;
Replication, Controller, Versioning, Rollout, Rollback&lt;br&gt;
Rolling update is the default&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What is Pod?</title>
      <dc:creator>PrashanthL</dc:creator>
      <pubDate>Mon, 16 Oct 2023 11:57:01 +0000</pubDate>
      <link>https://www.debug.school/prashanthlinga_252/what-is-pod-3geg</link>
      <guid>https://www.debug.school/prashanthlinga_252/what-is-pod-3geg</guid>
      <description>&lt;p&gt;Pod can only be instantiated and can not be created&lt;br&gt;
Pod is running as long as container is running. &lt;br&gt;
Pid-1 is running container, kill it container is killed&lt;br&gt;
Node can have multiple pods&lt;br&gt;
Static pod - there are 4 static pods - not controlled by K8s&lt;br&gt;
System pod also known as static pod&lt;br&gt;
User pod - dynamic pod contains applications&lt;br&gt;
Pod life cycle - Pending, Running, Succeeded/failed which depends on container state&lt;br&gt;
1 pod, 1 container is a good design&lt;br&gt;
There are single container pod and multiple container pods&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Kubernetes Assignment-1</title>
      <dc:creator>PrashanthL</dc:creator>
      <pubDate>Mon, 16 Oct 2023 07:20:00 +0000</pubDate>
      <link>https://www.debug.school/prashanthlinga_252/kubernetes-assignment-1-462e</link>
      <guid>https://www.debug.school/prashanthlinga_252/kubernetes-assignment-1-462e</guid>
      <description>&lt;p&gt;&lt;strong&gt;1. What is Kubernetes?&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It is shortened as K8s. It is open-source container orchestration system for automating application deployment, scaling, management. &lt;/li&gt;
&lt;li&gt;It is written in Go language.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;2. Why do we need Kubernetes?&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Need for running application without downtime&lt;/li&gt;
&lt;li&gt;Better resource utilization&lt;/li&gt;
&lt;li&gt;Auto Scaling applications based on demand&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;3. How Kubernetes works?&lt;/strong&gt;&lt;br&gt;
Has master and worker nodes&lt;br&gt;
master has 4 components - &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;APIServer - worker node and the workstation can talk only through the api server&lt;/li&gt;
&lt;li&gt;Cluster Store - &lt;/li&gt;
&lt;li&gt;Controller Manager - core component delegates work to each node&lt;/li&gt;
&lt;li&gt;Scheduler - responsible for scheduling containers onto nodes based on available resources and other factors.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Nodes: Nodes are the worker machines that run containerized applications. Each node has several components:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;kubelet: The kubelet is responsible for managing the containers running on the node.&lt;/li&gt;
&lt;li&gt;Container Runtime: The container runtime is responsible for running containers.&lt;/li&gt;
&lt;li&gt;Kube-proxy: Kube-proxy is a network proxy that runs on each node and is responsible for implementing Kubernetes services and network policies.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://www.debug.school/images/ndk3nlDWvtxBN25q24kYb--UhpBEep6_VZTsNrtzApk/rt:fit/w:800/g:sm/mb:500000/ar:1/aHR0cHM6Ly93d3cu/ZGVidWcuc2Nob29s/L3VwbG9hZHMvYXJ0/aWNsZXMvZDUwMHYx/aWRvNDJrc2dnaGR6/OXIucG5n" class="article-body-image-wrapper"&gt;&lt;img src="https://www.debug.school/images/ndk3nlDWvtxBN25q24kYb--UhpBEep6_VZTsNrtzApk/rt:fit/w:800/g:sm/mb:500000/ar:1/aHR0cHM6Ly93d3cu/ZGVidWcuc2Nob29s/L3VwbG9hZHMvYXJ0/aWNsZXMvZDUwMHYx/aWRvNDJrc2dnaGR6/OXIucG5n" alt="Image description" width="781" height="481"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is a Pod?&lt;/strong&gt;&lt;br&gt;
A Pod is the smallest and simplest unit in the cluster&lt;/p&gt;

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