<?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>Forem: Ridvan Altun</title>
    <description>The latest articles on Forem by Ridvan Altun (@ridvanaltun).</description>
    <link>https://forem.com/ridvanaltun</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F233760%2Fe5af33bd-2088-444a-a7b6-decb8400b462.jpg</url>
      <title>Forem: Ridvan Altun</title>
      <link>https://forem.com/ridvanaltun</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/ridvanaltun"/>
    <language>en</language>
    <item>
      <title>Finding Active Forks in GitHub</title>
      <dc:creator>Ridvan Altun</dc:creator>
      <pubDate>Wed, 23 Jun 2021 21:54:49 +0000</pubDate>
      <link>https://forem.com/ridvanaltun/finding-active-forks-in-github-42ne</link>
      <guid>https://forem.com/ridvanaltun/finding-active-forks-in-github-42ne</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/ridvanaltun/active-forks"&gt;This project&lt;/a&gt; allows you to find the most active forks of a repository.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--xse3iN1A--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/azgw8b2othx83yif154u.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--xse3iN1A--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/azgw8b2othx83yif154u.png" alt="Active Forks"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can use this tool with the web extension (for &lt;a href="https://addons.mozilla.org/en-US/firefox/addon/active-forks/"&gt;Firefox&lt;/a&gt;, &lt;a href="https://chrome.google.com/webstore/detail/active-forks/kicchcnkocbmnmlpmjoojinofkagcjpi"&gt;Chrome&lt;/a&gt; or &lt;a href="https://microsoftedge.microsoft.com/addons/detail/active-forks/bpjmkkjkcligjfbanmjnlkjffalbehpb"&gt;Edge&lt;/a&gt;). The extension is a open source project, you can check from &lt;a href="https://github.com/ridvanaltun/active-forks-extension"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--27u4OE-z--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vq75901nd2qbuz8mqgyv.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--27u4OE-z--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vq75901nd2qbuz8mqgyv.jpg" alt="Active Forks Extension"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>github</category>
    </item>
    <item>
      <title>Deploy a Multi-Node Kubernetes Cluster with Vagrant</title>
      <dc:creator>Ridvan Altun</dc:creator>
      <pubDate>Tue, 22 Jun 2021 23:35:40 +0000</pubDate>
      <link>https://forem.com/ridvanaltun/deploy-a-multi-node-kubernetes-cluster-with-vagrant-5bc9</link>
      <guid>https://forem.com/ridvanaltun/deploy-a-multi-node-kubernetes-cluster-with-vagrant-5bc9</guid>
      <description>&lt;p&gt;Deploying a Kubernetes cluster is a time consuming and boring job so I created a project for solving this issue.&lt;/p&gt;

&lt;p&gt;Here is the project: &lt;a href="https://github.com/ridvanaltun/kubernetes-vagrant"&gt;https://github.com/ridvanaltun/kubernetes-vagrant&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Just follow the below steps:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Install the plugin for Vagrant to ability to use environment files.&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;vagrant plugin &lt;span class="nb"&gt;install &lt;/span&gt;vagrant-env

&lt;span class="c"&gt;# Clone the project.&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;git clone https://github.com/ridvanaltun/kubernetes-vagrant.git 

&lt;span class="c"&gt;# Go into it.&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;&lt;span class="nb"&gt;cd &lt;/span&gt;kubernetes-vagrant

&lt;span class="c"&gt;# Don't forget to customize your own environment file.&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;&lt;span class="nb"&gt;cp&lt;/span&gt; .env.example .env

&lt;span class="c"&gt;# Up one master and two worker node.&lt;/span&gt;
&lt;span class="c"&gt;# This takes approximately ~15 minutes if you using first time.&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;vagrant up m n1 n2

&lt;span class="c"&gt;# Connect to master node over SSH.&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;vagrant ssh m

&lt;span class="c"&gt;# You can do everything you want, an example, list nodes.&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;kubectl get nodes
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It is simple like that.&lt;/p&gt;

</description>
      <category>kubernetes</category>
      <category>vagrant</category>
      <category>devops</category>
      <category>k8s</category>
    </item>
  </channel>
</rss>
