<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Code,Committ and Repeat on Engineer</title>
    <link>/</link>
    <description>Recent content in Code,Committ and Repeat on Engineer</description>
    <generator>Hugo</generator>
    <language>en</language>
    <copyright>Copyright (c) 2020-2026 Thulite</copyright>
    <lastBuildDate>Tue, 17 Feb 2026 13:06:19 +0100</lastBuildDate>
    <atom:link href="/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>How to host a website using hugo</title>
      <link>/blog/how-to-host-a-website-using-hugo/</link>
      <pubDate>Mon, 16 Feb 2026 16:31:32 +0100</pubDate>
      <guid>/blog/how-to-host-a-website-using-hugo/</guid>
      <description>Use blog posts to communicate product updates and new features in a clear and consistent format.</description>
    </item>
    <item>
      <title>Example Guide</title>
      <link>/docs/guides/example-guide/</link>
      <pubDate>Thu, 07 Sep 2023 16:04:48 +0200</pubDate>
      <guid>/docs/guides/example-guide/</guid>
      <description>&lt;p&gt;Guides lead a user through a specific task they want to accomplish, often with a sequence of steps. Writing a good guide requires thinking about what your users are trying to do.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Example Reference</title>
      <link>/docs/reference/example-reference/</link>
      <pubDate>Thu, 07 Sep 2023 16:13:18 +0200</pubDate>
      <guid>/docs/reference/example-reference/</guid>
      <description>&lt;p&gt;Reference pages are ideal for outlining how things work in terse and clear terms. Less concerned with telling a story or addressing a specific use case, they should give a comprehensive outline of what your documenting.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Resources</title>
      <link>/docs/resources/</link>
      <pubDate>Tue, 27 Feb 2024 09:30:56 +0100</pubDate>
      <guid>/docs/resources/</guid>
      <description>&lt;p&gt;Link to valuable, relevant resources.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Page not found</title>
      <link>/404/</link>
      <pubDate>Tue, 17 Feb 2026 13:06:19 +0100</pubDate>
      <guid>/404/</guid>
      <description>&lt;p&gt;Sorry, we can&amp;rsquo;t find the page you&amp;rsquo;re looking for.&lt;/p&gt;&#xA;&lt;p&gt;Use the navigation above or go back to the &#xD;&#xA;&#xD;&#xA;&lt;a class=&#34;link link--text&#34; href=&#34;/&#34;&gt;homepage&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Privacy Policy</title>
      <link>/privacy/</link>
      <pubDate>Thu, 07 Sep 2023 17:19:07 +0200</pubDate>
      <guid>/privacy/</guid>
      <description>&lt;p&gt;We value your privacy and are committed to protecting your personal data. This Privacy Policy explains what information we collect, how we use it, and the choices you have.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Commands</title>
      <link>/docs/kubernetes/commands/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/docs/kubernetes/commands/</guid>
      <description>&lt;h1 id=&#34;oc-commands&#34;&gt;OC commands&lt;/h1&gt;&#xA;&lt;p&gt;This page comtains commands needs to setup  up docker&lt;/p&gt;&#xA;&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;&lt;div class=&#34;expressive-code&#34;&gt;&#xD;&#xA;  &lt;figure class=&#34;frame not-content&#34;&gt;&#xD;&#xA;  &lt;figcaption class=&#34;header&#34;&gt;&#xD;&#xA;    &lt;span class=&#34;title&#34;&gt;&lt;/span&gt;&#xD;&#xA;  &lt;/figcaption&gt;&#xD;&#xA;  &lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;&#xA;```bash&#xA;# Kuernetes Variable Declaration&#xA;&#xA;KUBERNETES_VERSION=v1.32&#xA;CRIO_VERSION=v1.32&#xA;&#xA;# Apply sysctl params without reboot&#xA;sudo sysctl --system&#xA;&#xA;sudo apt-get update -y&#xA;sudo apt-get install -y apt-transport-https ca-certificates curl gpg&#xA;&#xA;## Install CRIO Runtime&#xA;&#xA;sudo apt-get update -y&#xA;apt-get install -y software-properties-common curl apt-transport-https ca-certificates&#xA;&#xA;&#xA;curl -fsSL https://pkgs.k8s.io/addons:/cri-o:/stable:/$CRIO_VERSION/deb/Release.key |&#xA;    gpg --dearmor -o /etc/apt/keyrings/cri-o-apt-keyring.gpg&#xA;&#xA;echo &amp;#34;deb [signed-by=/etc/apt/keyrings/cri-o-apt-keyring.gpg] https://pkgs.k8s.io/addons:/cri-o:/stable:/$CRIO_VERSION/deb/ /&amp;#34; |&#xA;    tee /etc/apt/sources.list.d/cri-o.list&#xA;&#xA;&#xA;sudo apt-get update -y&#xA;sudo apt-get install -y cri-o&#xA;&#xA;sudo systemctl daemon-reload&#xA;sudo systemctl enable crio --now&#xA;sudo systemctl start crio.service&#xA;&#xA;echo &amp;#34;CRI runtime installed susccessfully&amp;#34;&lt;/code&gt;&lt;/pre&gt;&#xD;&#xA;  &lt;/figure&gt;&#xD;&#xA;&lt;/div&gt;</description>
    </item>
    <item>
      <title>Networking</title>
      <link>/docs/kubernetes/networking/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>/docs/kubernetes/networking/</guid>
      <description>&lt;h1 id=&#34;kubernetes-networking&#34;&gt;Kubernetes Networking&lt;/h1&gt;&#xA;&lt;p&gt;This page explains Kubernetes networking.&lt;/p&gt;&#xA;&lt;pre class=&#34;mermaid&#34;&gt;&#xD;&#xA;  graph LR&#xA;Ingress --&amp;gt; Service&#xA;Service --&amp;gt; Pod&#xD;&#xA;&lt;/pre&gt;&#xD;&#xA;&#xD;&#xA;&lt;pre class=&#34;mermaid&#34;&gt;&#xD;&#xA;  graph LR&#xA;UE --&amp;gt; CNCS&#xA;CNCS --&amp;gt; ISBC&#xD;&#xA;&lt;/pre&gt;</description>
    </item>
  </channel>
</rss>
