<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Building a Raspberry Pi Kubernetes Cluster on Ubuntu 20.04 using kubeadm and Containerd as the runtime.	</title>
	<atom:link href="https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/feed/" rel="self" type="application/rss+xml" />
	<link>https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime</link>
	<description>A blog about Azure Kubernetes Service (AKS) and more...</description>
	<lastBuildDate>Mon, 13 Dec 2021 04:15:40 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1</generator>
	<item>
		<title>
		By: Borey		</title>
		<link>https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-532</link>

		<dc:creator><![CDATA[Borey]]></dc:creator>
		<pubDate>Mon, 13 Dec 2021 04:15:40 +0000</pubDate>
		<guid isPermaLink="false">https://pixelrobots.co.uk/?p=37979#comment-532</guid>

					<description><![CDATA[Great article! Thanks!]]></description>
			<content:encoded><![CDATA[<p>Great article! Thanks!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Will		</title>
		<link>https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-530</link>

		<dc:creator><![CDATA[Will]]></dc:creator>
		<pubDate>Fri, 26 Nov 2021 03:42:43 +0000</pubDate>
		<guid isPermaLink="false">https://pixelrobots.co.uk/?p=37979#comment-530</guid>

					<description><![CDATA[containerd config default  /etc/containerd/config.toml
should have been written like this:
containerd config default &#062; /etc/containerd/config.toml
Also found I had to run:
sudo apt install linux-modules-extra-raspi &#038;&#038; reboot
at a point in the middle to make sure that vxlan kern module was loaded.
this issue manifested by displaying:
The connection to the server x.x.x.x:6443 was refused – did you specify the right host or port?
at the point I was trying to install flannel on the system.
I also installed netstat, and firewall-cmd to troubleshoot, and added 6443 to my allowed ports:
sudo firewall-cmd –permanent –add-port=6443/tcp
and had to reboot after that.
That all seemed to do the trick as then the commands you had above worked fine.

I had bought the set of 3 raspberry pis with the intent to learn more about kubernetes in general.
Thanks for the tutorial, even with the additions this was by far the easiest one I came across.]]></description>
			<content:encoded><![CDATA[<p>containerd config default  /etc/containerd/config.toml<br />
should have been written like this:<br />
containerd config default &gt; /etc/containerd/config.toml<br />
Also found I had to run:<br />
sudo apt install linux-modules-extra-raspi &amp;&amp; reboot<br />
at a point in the middle to make sure that vxlan kern module was loaded.<br />
this issue manifested by displaying:<br />
The connection to the server x.x.x.x:6443 was refused – did you specify the right host or port?<br />
at the point I was trying to install flannel on the system.<br />
I also installed netstat, and firewall-cmd to troubleshoot, and added 6443 to my allowed ports:<br />
sudo firewall-cmd –permanent –add-port=6443/tcp<br />
and had to reboot after that.<br />
That all seemed to do the trick as then the commands you had above worked fine.</p>
<p>I had bought the set of 3 raspberry pis with the intent to learn more about kubernetes in general.<br />
Thanks for the tutorial, even with the additions this was by far the easiest one I came across.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Will		</title>
		<link>https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-529</link>

		<dc:creator><![CDATA[Will]]></dc:creator>
		<pubDate>Fri, 26 Nov 2021 03:41:19 +0000</pubDate>
		<guid isPermaLink="false">https://pixelrobots.co.uk/?p=37979#comment-529</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-528&quot;&gt;Will&lt;/a&gt;.

I think my other comment deleted my first one, here goes again:
containerd config default  /etc/containerd/config.toml

should be:
containerd config default  &#062; /etc/containerd/config.toml]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-528">Will</a>.</p>
<p>I think my other comment deleted my first one, here goes again:<br />
containerd config default  /etc/containerd/config.toml</p>
<p>should be:<br />
containerd config default  &gt; /etc/containerd/config.toml</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Will		</title>
		<link>https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-528</link>

		<dc:creator><![CDATA[Will]]></dc:creator>
		<pubDate>Fri, 26 Nov 2021 03:38:41 +0000</pubDate>
		<guid isPermaLink="false">https://pixelrobots.co.uk/?p=37979#comment-528</guid>

					<description><![CDATA[Also found I had to run:
    sudo apt install linux-modules-extra-raspi &#038;&#038; reboot
at a point in the middle to make sure that vxlan kern module was loaded.
this issue manifested by displaying:
    The connection to the server x.x.x.x:6443 was refused - did you specify the right host or port?
at the point I was trying to install flannel on the system.
I also installed netstat, and firewall-cmd to troubleshoot, and added 6443 to my allowed ports:
    sudo firewall-cmd --permanent --add-port=6443/tcp
and had to reboot after that.
That all seemed to do the trick as then the commands you had above worked fine.

I had bought the set of 3 raspberry pis with the intent to learn more about kubernetes in general.  
Thanks for the tutorial, even with the additions this was by far the easiest one I came across.]]></description>
			<content:encoded><![CDATA[<p>Also found I had to run:<br />
    sudo apt install linux-modules-extra-raspi &amp;&amp; reboot<br />
at a point in the middle to make sure that vxlan kern module was loaded.<br />
this issue manifested by displaying:<br />
    The connection to the server x.x.x.x:6443 was refused &#8211; did you specify the right host or port?<br />
at the point I was trying to install flannel on the system.<br />
I also installed netstat, and firewall-cmd to troubleshoot, and added 6443 to my allowed ports:<br />
    sudo firewall-cmd &#8211;permanent &#8211;add-port=6443/tcp<br />
and had to reboot after that.<br />
That all seemed to do the trick as then the commands you had above worked fine.</p>
<p>I had bought the set of 3 raspberry pis with the intent to learn more about kubernetes in general.<br />
Thanks for the tutorial, even with the additions this was by far the easiest one I came across.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: will		</title>
		<link>https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-527</link>

		<dc:creator><![CDATA[will]]></dc:creator>
		<pubDate>Fri, 26 Nov 2021 02:08:10 +0000</pubDate>
		<guid isPermaLink="false">https://pixelrobots.co.uk/?p=37979#comment-527</guid>

					<description><![CDATA[this command:
containerd config default /etc/containerd/config.toml

should contain the redirect to the file:
containerd config default &#062; /etc/containerd/config.toml]]></description>
			<content:encoded><![CDATA[<p>this command:<br />
containerd config default /etc/containerd/config.toml</p>
<p>should contain the redirect to the file:<br />
containerd config default &gt; /etc/containerd/config.toml</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Alvaro		</title>
		<link>https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-524</link>

		<dc:creator><![CDATA[Alvaro]]></dc:creator>
		<pubDate>Thu, 16 Sep 2021 16:42:53 +0000</pubDate>
		<guid isPermaLink="false">https://pixelrobots.co.uk/?p=37979#comment-524</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-514&quot;&gt;Steven Dillon&lt;/a&gt;.

Hi,

Not yet...

https://github.com/istio/istio/issues/21094

Thanks a lot]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-514">Steven Dillon</a>.</p>
<p>Hi,</p>
<p>Not yet&#8230;</p>
<p><a href="https://github.com/istio/istio/issues/21094" rel="nofollow ugc">https://github.com/istio/istio/issues/21094</a></p>
<p>Thanks a lot</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Alvaro		</title>
		<link>https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-523</link>

		<dc:creator><![CDATA[Alvaro]]></dc:creator>
		<pubDate>Thu, 16 Sep 2021 16:40:12 +0000</pubDate>
		<guid isPermaLink="false">https://pixelrobots.co.uk/?p=37979#comment-523</guid>

					<description><![CDATA[Hi,

With this Raspberry PI CLuster...How you can simulate StorageClass???

I need learn this one for the CKA Certification too :D

Thanks a los,]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>With this Raspberry PI CLuster&#8230;How you can simulate StorageClass???</p>
<p>I need learn this one for the CKA Certification too 😀</p>
<p>Thanks a los,</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Pixel Robots.		</title>
		<link>https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-515</link>

		<dc:creator><![CDATA[Pixel Robots.]]></dc:creator>
		<pubDate>Thu, 05 Aug 2021 11:31:27 +0000</pubDate>
		<guid isPermaLink="false">https://pixelrobots.co.uk/?p=37979#comment-515</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-514&quot;&gt;Steven Dillon&lt;/a&gt;.

I don&#039;t have anything on ISTIO unfortunately. Do you really need it? Maybe look at Linkerd instead. I&#039;s much more light weight.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-514">Steven Dillon</a>.</p>
<p>I don&#8217;t have anything on ISTIO unfortunately. Do you really need it? Maybe look at Linkerd instead. I&#8217;s much more light weight.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Steven Dillon		</title>
		<link>https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-514</link>

		<dc:creator><![CDATA[Steven Dillon]]></dc:creator>
		<pubDate>Tue, 03 Aug 2021 19:59:18 +0000</pubDate>
		<guid isPermaLink="false">https://pixelrobots.co.uk/?p=37979#comment-514</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-510&quot;&gt;Pixel Robots.&lt;/a&gt;.

Got me a 4 node K8s cluster ta very much. Great article, got anything on installing and configuring ISTIO.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-510">Pixel Robots.</a>.</p>
<p>Got me a 4 node K8s cluster ta very much. Great article, got anything on installing and configuring ISTIO.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Pixel Robots.		</title>
		<link>https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-510</link>

		<dc:creator><![CDATA[Pixel Robots.]]></dc:creator>
		<pubDate>Wed, 07 Jul 2021 18:35:07 +0000</pubDate>
		<guid isPermaLink="false">https://pixelrobots.co.uk/?p=37979#comment-510</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-509&quot;&gt;Steven Dillon&lt;/a&gt;.

Awesome news. Let me know how you get on.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/#comment-509">Steven Dillon</a>.</p>
<p>Awesome news. Let me know how you get on.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
