<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Applications on Taygun's Personal Website</title><link>https://bulmus.org/posts/labs/</link><description>Recent content in Applications on Taygun's Personal Website</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Fri, 24 Jul 2026 19:33:57 +0300</lastBuildDate><atom:link href="https://bulmus.org/posts/labs/index.xml" rel="self" type="application/rss+xml"/><item><title>How to Install Kind Cluster with Gateway?</title><link>https://bulmus.org/posts/labs/kubernetes/install-kind-cluster/</link><pubDate>Fri, 24 Jul 2026 19:33:57 +0300</pubDate><guid>https://bulmus.org/posts/labs/kubernetes/install-kind-cluster/</guid><description>&lt;h2 id="install-kind-cluster">Install Kind Cluster&lt;/h2>
&lt;p>Before installation, check the latest version from &lt;a href="https://github.com/kubernetes-sigs/kind/releases" target="_blank" rel="noopener">official kind repository&lt;/a>.&lt;/p>
&lt;p>Install binary.&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-bash" data-lang="bash">&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e"># ======================&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e"># CHECK THIS VERSION&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>KIND_VERSION&lt;span style="color:#f92672">=&lt;/span>v0.32.0
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e"># ======================&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e"># Download&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e"># For AMD64 / x86_64&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#f92672">[&lt;/span> &lt;span style="color:#66d9ef">$(&lt;/span>uname -m&lt;span style="color:#66d9ef">)&lt;/span> &lt;span style="color:#f92672">=&lt;/span> x86_64 &lt;span style="color:#f92672">]&lt;/span> &lt;span style="color:#f92672">&amp;amp;&amp;amp;&lt;/span> curl -Lo ./kind https://kind.sigs.k8s.io/dl/&lt;span style="color:#e6db74">${&lt;/span>KIND_VERSION&lt;span style="color:#e6db74">}&lt;/span>/kind-linux-amd64
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e"># For ARM64&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#f92672">[&lt;/span> &lt;span style="color:#66d9ef">$(&lt;/span>uname -m&lt;span style="color:#66d9ef">)&lt;/span> &lt;span style="color:#f92672">=&lt;/span> aarch64 &lt;span style="color:#f92672">]&lt;/span> &lt;span style="color:#f92672">&amp;amp;&amp;amp;&lt;/span> curl -Lo ./kind https://kind.sigs.k8s.io/dl/&lt;span style="color:#e6db74">${&lt;/span>KIND_VERSION&lt;span style="color:#e6db74">}&lt;/span>/kind-linux-arm64
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e"># Make it executable&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>chmod +x ./kind
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e"># Move it to common binary&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>sudo mv ./kind /usr/local/bin/kind
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>Create kubernetes kind cluster for fast testing purpose.&lt;/p></description></item></channel></rss>