<?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: Ranjith Kumar Ragupathi</title>
    <description>The latest articles on Debug School by Ranjith Kumar Ragupathi (@rranjith1983).</description>
    <link>https://www.debug.school/rranjith1983</link>
    <image>
      <url>https://www.debug.school/images/CPDdQlGexClW9WOTxwLbEDeLKxuBxqind7bvkmstzXo/rs:fill:90:90/g:sm/mb:500000/ar:1/aHR0cHM6Ly90aGVw/cmFjdGljYWxkZXYu/czMuYW1hem9uYXdz/LmNvbS9pLzk5bXZs/c2Z1NXRmajltN2t1/MjVkLnBuZw</url>
      <title>Debug School: Ranjith Kumar Ragupathi</title>
      <link>https://www.debug.school/rranjith1983</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://www.debug.school/feed/rranjith1983"/>
    <language>en</language>
    <item>
      <title>What is Pods?</title>
      <dc:creator>Ranjith Kumar Ragupathi</dc:creator>
      <pubDate>Fri, 21 Jul 2023 13:28:25 +0000</pubDate>
      <link>https://www.debug.school/rranjith1983/what-is-pods-3fi8</link>
      <guid>https://www.debug.school/rranjith1983/what-is-pods-3fi8</guid>
      <description>&lt;p&gt;Pods are the smallest deployable computing units in Kubernetes, an open source system for container scheduling, orchestration and management.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How Kubernetes works?</title>
      <dc:creator>Ranjith Kumar Ragupathi</dc:creator>
      <pubDate>Fri, 21 Jul 2023 13:28:12 +0000</pubDate>
      <link>https://www.debug.school/rranjith1983/how-kubernetes-works-2i72</link>
      <guid>https://www.debug.school/rranjith1983/how-kubernetes-works-2i72</guid>
      <description>&lt;p&gt;Kubernetes is a platform for managing containerized applications. It does this by providing APIs that allow you to control and manage how your containerized applications are deployed, scaled, and organized. Kubernetes can be used on-premises or in the cloud and is currently the most popular platform for managing containerized applications.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Why We need Kubernetes?</title>
      <dc:creator>Ranjith Kumar Ragupathi</dc:creator>
      <pubDate>Fri, 21 Jul 2023 13:27:58 +0000</pubDate>
      <link>https://www.debug.school/rranjith1983/why-we-need-kubernetes-4ok6</link>
      <guid>https://www.debug.school/rranjith1983/why-we-need-kubernetes-4ok6</guid>
      <description>&lt;p&gt;Kubernetes is used to manage containers and load balancing for container management on single or multiple hosts.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What is Kubernetes?</title>
      <dc:creator>Ranjith Kumar Ragupathi</dc:creator>
      <pubDate>Fri, 21 Jul 2023 13:27:42 +0000</pubDate>
      <link>https://www.debug.school/rranjith1983/what-is-kubernetes-1354</link>
      <guid>https://www.debug.school/rranjith1983/what-is-kubernetes-1354</guid>
      <description>&lt;p&gt;Kubernetes automates operational tasks of container management.&lt;br&gt;
It is used to deploying applications, rolling out changes to your applications, scaling your applications up and down to fit changing needs, monitoring your applications, and more—making it easier to manage applications.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Write a Ansible Playbook to install a package called “git”, “wget” and run some bash script.</title>
      <dc:creator>Ranjith Kumar Ragupathi</dc:creator>
      <pubDate>Thu, 20 Jul 2023 13:22:40 +0000</pubDate>
      <link>https://www.debug.school/rranjith1983/write-a-ansible-playbook-to-install-a-package-called-git-wget-and-run-some-bash-script-3ljj</link>
      <guid>https://www.debug.school/rranjith1983/write-a-ansible-playbook-to-install-a-package-called-git-wget-and-run-some-bash-script-3ljj</guid>
      <description>&lt;p&gt;root@ip-172-31-87-83:~# cat Playbook_script_Ranjith.yml&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;name: Install Git and Wget and Run Bash Script
hosts: web
become: yes  # Run tasks with administrative privileges (sudo)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;tasks:&lt;br&gt;
    - name: Install Git (for Debian/Ubuntu-based systems)&lt;br&gt;
      apt:&lt;br&gt;
        name: git&lt;br&gt;
        state: present&lt;br&gt;
      when: ansible_os_family == 'Debian' or ansible_os_family == 'Ubuntu'&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;- name: Install Wget (for Debian/Ubuntu-based systems)
  apt:
    name: wget
    state: present
  when: ansible_os_family == 'Debian' or ansible_os_family == 'Ubuntu'
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Output:&lt;/p&gt;

&lt;p&gt;root@ip-172-31-87-83:~# ansible-playbook -i inventory Playbook_script_Ranjith.yml -u ubuntu --key-file=node.pem -b&lt;/p&gt;

&lt;p&gt;PLAY [Install Git and Wget and Run Bash Script] *************************************************************************************************************&lt;/p&gt;

&lt;p&gt;TASK [Gathering Facts] **************************************************************************************************************************************&lt;br&gt;
ok: [34.239.106.240]&lt;br&gt;
ok: [54.89.178.94]&lt;br&gt;
fatal: [10.1.1.1]: UNREACHABLE! =&amp;gt; {"changed": false, "msg": "Failed to connect to the host via ssh: ssh: connect to host 10.1.1.1 port 22: Connection timed out", "unreachable": true}&lt;br&gt;
fatal: [10.22.2.2]: UNREACHABLE! =&amp;gt; {"changed": false, "msg": "Failed to connect to the host via ssh: ssh: connect to host 10.22.2.2 port 22: Connection timed out", "unreachable": true}&lt;/p&gt;

&lt;p&gt;TASK [Install Git (for Debian/Ubuntu-based systems)] ********************************************************************************************************&lt;br&gt;
ok: [34.239.106.240]&lt;br&gt;
ok: [54.89.178.94]&lt;/p&gt;

&lt;p&gt;TASK [Install Wget (for Debian/Ubuntu-based systems)] *******************************************************************************************************&lt;br&gt;
ok: [34.239.106.240]&lt;br&gt;
ok: [54.89.178.94]&lt;/p&gt;

&lt;p&gt;PLAY RECAP **************************************************************************************************************************************************&lt;br&gt;
10.1.1.1                   : ok=0    changed=0    unreachable=1    failed=0    skipped=0    rescued=0    ignored=0&lt;br&gt;
10.22.2.2                  : ok=0    changed=0    unreachable=1    failed=0    skipped=0    rescued=0    ignored=0&lt;br&gt;
34.239.106.240             : ok=3    changed=0    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0&lt;br&gt;
54.89.178.94               : ok=3    changed=0    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0&lt;/p&gt;

&lt;p&gt;root@ip-172-31-87-83:~#&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What is the different between docker pause and unpause?</title>
      <dc:creator>Ranjith Kumar Ragupathi</dc:creator>
      <pubDate>Tue, 18 Jul 2023 07:30:46 +0000</pubDate>
      <link>https://www.debug.school/rranjith1983/what-is-the-different-between-docker-pause-and-unpause-36i6</link>
      <guid>https://www.debug.school/rranjith1983/what-is-the-different-between-docker-pause-and-unpause-36i6</guid>
      <description>&lt;p&gt;"Docker Pause" command will suspend the running process for specified container.&lt;br&gt;
"Docker unpause" command will resume the process for the specified container.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What is Docker and why is it used?</title>
      <dc:creator>Ranjith Kumar Ragupathi</dc:creator>
      <pubDate>Mon, 17 Jul 2023 15:26:43 +0000</pubDate>
      <link>https://www.debug.school/rranjith1983/what-is-docker-and-why-is-it-used-438c</link>
      <guid>https://www.debug.school/rranjith1983/what-is-docker-and-why-is-it-used-438c</guid>
      <description>&lt;p&gt;Docker is container-based platforms. &lt;br&gt;
Docker is used many companies due to its reliability, performance, and functionality.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What is DevSecOps?</title>
      <dc:creator>Ranjith Kumar Ragupathi</dc:creator>
      <pubDate>Thu, 13 Jul 2023 16:02:01 +0000</pubDate>
      <link>https://www.debug.school/rranjith1983/what-is-devsecops-1fpd</link>
      <guid>https://www.debug.school/rranjith1983/what-is-devsecops-1fpd</guid>
      <description>&lt;p&gt;DevSecOps is the methodology of integrating security testing at every stage of the software development process. DevSecOps collaboration between developers, security specialists, and operation teams.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How DevOps and SRE are different?</title>
      <dc:creator>Ranjith Kumar Ragupathi</dc:creator>
      <pubDate>Thu, 13 Jul 2023 15:56:35 +0000</pubDate>
      <link>https://www.debug.school/rranjith1983/how-devops-and-sre-are-different-3eci</link>
      <guid>https://www.debug.school/rranjith1983/how-devops-and-sre-are-different-3eci</guid>
      <description>&lt;p&gt;DevOps methodology is collaboration between software development team and operation team.&lt;/p&gt;

&lt;p&gt;SRE focused reliability and availability. SRE engineers with operational and development skills.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What are the list of DevOps Tools?</title>
      <dc:creator>Ranjith Kumar Ragupathi</dc:creator>
      <pubDate>Thu, 13 Jul 2023 15:50:51 +0000</pubDate>
      <link>https://www.debug.school/rranjith1983/what-are-the-list-of-devops-tools-1o67</link>
      <guid>https://www.debug.school/rranjith1983/what-are-the-list-of-devops-tools-1o67</guid>
      <description>&lt;p&gt;Ansible&lt;br&gt;
Github&lt;br&gt;
Docker&lt;br&gt;
AWS, Azure, Google cloud&lt;br&gt;
Kubernetes&lt;br&gt;
Splunk&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What are the list of DevOps Tools?</title>
      <dc:creator>Ranjith Kumar Ragupathi</dc:creator>
      <pubDate>Wed, 12 Jul 2023 15:54:50 +0000</pubDate>
      <link>https://www.debug.school/rranjith1983/what-are-the-list-of-devops-tools-58m0</link>
      <guid>https://www.debug.school/rranjith1983/what-are-the-list-of-devops-tools-58m0</guid>
      <description>&lt;p&gt;Ansible&lt;br&gt;
Github&lt;br&gt;
Docker&lt;br&gt;
AWS, Azure, Google cloud&lt;br&gt;
Kubenetes&lt;br&gt;
Splunk&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What exactly do DevOps do?</title>
      <dc:creator>Ranjith Kumar Ragupathi</dc:creator>
      <pubDate>Wed, 12 Jul 2023 15:50:38 +0000</pubDate>
      <link>https://www.debug.school/rranjith1983/what-exactly-do-devops-do-39a6</link>
      <guid>https://www.debug.school/rranjith1983/what-exactly-do-devops-do-39a6</guid>
      <description>&lt;p&gt;DevOps helps to reduce the development cost&lt;br&gt;
It helps to provide quality services&lt;br&gt;
Speed up the development process&lt;/p&gt;

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