Raspberry Pi Cluster Ep 4 – Minecraft, Pi-hole, Grafana + MORE!

Video Information

In the last episode i showed you how to install kubernetes on the turing pi cluster running on seven raspberry pi compute modules in this episode i’m going to show you some of the things you can do with a kubernetes cluster in the last episode i explained in a very basic way how kubernetes

Works it basically runs applications across all your servers to help manage kubernetes there’s a handy little tool called qb cuddle sometimes i call it cube control but if we go down that road i have to start talking about why it’s called a gif and not a gif and

Why spaces are better than tabs or why vim is better than emacs and i i really don’t want to go down that road richard what’s wrong nothing nothing literally it’s all good i won’t go into a deep dive on managing kubernetes in this series because that could be its own 24-part

Series but i will be using qbcuddle a lot to deploy apps on the cluster and to check on their status or to make changes to them there are usually many ways to do the same thing in kubernetes and i’ll let you decide if that’s a feature or a bug

And just as a warning there may be a few parts of this episode that are a little over your head and that’s okay that that’s kind of how it is working with kubernetes the only way to learn is to build test clusters make them fail in new and

Exciting ways and then start over again i like to think of it like every second you’re working right at the edge of your understanding when it works it’s magic and when it doesn’t well good luck no i’m just kidding i’ll try to help you understand the basics and

Once you start building your own cluster hopefully you can start to understand how it all works together one of the most frustrating things that you run into if you’re trying to do things with raspberry pi’s or any arm-based single-board computer like the raspberry pi is the fact that many applications and

Container images aren’t built for the pi so you end up in a cycle like this you think of some brilliant way you could use the pi cluster and you search for how to do brilliant thing x in kubernetes or k3s you find a repository or blog post with

The exact thing that you’re trying to do and you deploy the thing to your pi cluster and it doesn’t start you check the status and kubernetes is saying it’s stuck in a crash loop back off so you go check the logs and you see exec user process caused exact format error

This happens more often than i’d like to admit you see the problem is most container images like the ones you see on docker hub or quay are built for typical x86 computers like for the intel or amd processor you’re probably using on your computer right now most are not also built for arm

Computers like the raspberry pi and even if they are there are many different flavors of arm and maybe it’s built for 64-bit arm but not for 32-bit arm that you might be running if you’re not on a 64-bit version of raspberry pi os it can be well a little complicated

And sometimes if you really want to do something and can’t find a pre-built image that does what you want you’ll have to build your own container images it’s usually not too difficult but especially when you’re quickly testing new ideas out where other people may have already done

The exact same thing and did the work for you but you can’t use it because it’s not compatible it can be a bit frustrating to illustrate let’s look at one of the simplest hello world examples from kubernetes own documentation the hello mini cube example if i create

The hello node deployment with qb cuddle create deployment hello node and then pass it the image and then i check on its status after it’s deployed using qb cuddle get pods after a couple minutes i’ll see the pod in crash loop back off state and if i check the pods logs with qb

Cuddle logs i get you guessed it exec format error and not to be discouraging but sometimes when you want to solve a problem with kubernetes on a cluster of raspberry pi’s you’re kind of inflicting the pain on yourself imagine this scenario you want to run a minecraft server on your cluster

Now think about all the other people in the world who run minecraft servers how many of these people not only run a minecraft server but run it in a docker container in a kubernetes cluster on a raspberry pi which might be running a 32-bit operating system

The amount of people who are doing the same thing that you’re trying to do is usually pretty small so like early explorers you may have to do some extra work to get things working google is your friend here because often there are one or two other crazy people like me

Who are doing the exact same thing and finding their work can help you a lot now for the rest of this video i’m going to show you what i deployed to my turing pi cluster and how i did it so the first thing that i usually do

With a kubernetes cluster is i want to make sure that i can know what’s going on inside the cluster so i use some monitoring tools to see how the cpu and memory are affected by things that are running on the cluster and the best thing for that in my opinion is

Prometheus and grafana prometheus collects metrics from all your servers and all the running applications and then grafana can display them in nice fancy dashboards so there’s a project from core os called cube prometheus and this is pretty much the standard that people use when they want to run prometheus and

Grafana and alert manager on their clusters and that’s what we want to do so i’m going to go ahead and try to use it i’m going to use git and clone the project to the raspberry pi to the master node and then try to apply it using the quick start guide here

So i’m going to log into the raspberry pi pirate at turing master and i’m going to switch to the root user account you can actually set it up so that you could do it as the pirate user or you could do it from another computer too but for consistency’s sake i’m

Just going to do it in here clear that and now i’m going to clone this project using git git actually i’m going to go to my home directory which is pwd which is root so i’m in the root folder now and i’m going to clone this project with git

Git clone paste that in and it’s going to grab all of this repository data then i’m going to go into the readme and look for the quick start guide which is right here and it says basically that there are some manifest that that you can apply to your cluster

And it will set everything up for you we’ll get into what manifests are and how they work in a bit but i’m just going to try this and see what happens so we’ll create the setup manifests i have to cd into the cube prometheus directory and then i’m going

To run these two commands so apply the setup manifests and then run this command to make sure that everything’s working and that command is not giving me anything promising so i’m just going to try running this command by itself and see what it gives me no resources found so sometimes when

This kind of thing happens you’ll need to use qb cuddle to investigate what’s going on in your cluster so i’m going to see i know from past experience that this cube prometheus project actually sets up a namespace the monitoring namespace and i can see that also if i use qb cuddle

Get namespaces it’ll show me that there’s a new monitoring namespace and it says that it was created 42 seconds ago when i created all of these things so you can see it was the first thing it created up here so i’m going to look and see what pods

Are running in there and kubernetes pods run containers and applications and they’re kind of the basic unit of kubernetes application management there’s a lot of different ways to manage those pods in kubernetes but i know that pods are the things that actually get the work done

So i’m going to get all the pods in that monitoring namespace using qb cuddle get pods dash and monitoring and that’s going to show me that there’s a pod in here that’s stuck in crash loop back off i think i’ve seen this before let’s see what’s going on i’m going to

I’m going to get the logs out of this pod so qb cuddle get our kb cuddle logs dash f dash n monitoring and then i’m going to see this is going to show me the logs and it looks like there’s actually two containers in this pod and there’s two so let’s see what’s

Going on in the prometheus operator maybe it’s crashing so i’m going to say qb cuttle logs dash f dash n monitoring and then the operator pod and dash container and give it that one and it looks like prometheus is actually working okay i don’t see any problems here

Let’s check this other container and see what’s going on so i’m going to ctrl c to get out of that and i’m going to look at this container there’s our old friend the exact format error so apparently this cube our back proxy thing is is not going to run on the raspberry pi

And i’ll i’ll cut this story short and not not make you sit through this whole process but i actually found this problem when i was working on this and trying to get it to work and so i open up an issue on github about this basically the the cube rbac proxy

Pod which runs alongside the operator pod or container i should say uh it is not compatible with the arm v7 raspberry pi 32-bit operating system that we’re using so it gives us this error and we’re gonna have to find out a different way now i’m gonna cut a bit of time out of

Here actually the first time that i the first time i tried doing all this i i found this problem and i started investigating whether i could port this project to something raspberry pi compatible on my own and i i got pretty far i got almost everything working there were a

Couple little things that weren’t plugging in together but then in the midst of all that i found another project by somebody named carlos carlos edp created this cluster monitoring project which is it’s basically the same thing as cube prometheus but a cool thing that he did

Is he made this all work really well with raspberry pi and arm based clusters so any kind of arm single board computer it runs really well with this cluster monitoring project it even gives you things like cpu temperature monitoring which is really cool because you can see if your raspberry pi’s

Are going to be throttling when it’s running kubernetes workloads so what i’m going to do is i’m going to i’m going to delete all the things that i just created because i don’t want to run the cube prometheus project this is it’s not worth the time to try to get

That working sometimes when you run things on the raspberry pi you just kind of need to find a better faster way and this is the better faster way because somebody already did all this work for me so i’m going to say qb cuddle delete dash f and then it was in manifests

Setup so that’s going to delete all the resources that i had just created and i’m going to go back a directory and i’m going to remove the cube prometheus project because i’m not going to use it so now i’m going to grab this project which i know is built for the raspberry

Pi so it should work a little bit better so i’m going to say git clone that then i’m going to cd into the cluster monitoring directory and i’m going to follow this quick start guide so let’s see what it tells me to do a cool thing about it is that it has

Directions for a kubernetes cluster mini cube cluster running on your local computer or even k3s so it’s it’s tuned for all these different scenarios so i’m going to need to edit this vars.jsonnet file and change a few settings for my cluster so i’m going to say

I’m going to look and make sure it’s in here so there it is i’m going to use nano to edit that file and i’m going to find the k3s enabled settings so i’ll go down to find that here it is k3s enabled i want to set that to true and then i

Also need to change the master ip so i know that the master ip on this cluster is 10.0.100.164. and i’m also going to change the the suffix domain here to have one of the ip addresses of one of the worker nodes that’s going to be used when i access services running on the

Cluster so i’m going to choose 10.0.100.99 i think that’s worker o2 so i change that and then there’s also a setting it’s not mentioned right here but you can you can set it up towards the top that turns on the arm exporter that gives you data about

Cpu temperature things like that so i’m going to say true for that those are all the changes that i’m going to do for now there’s other things you can change in here and you can read the documentation for that for your own cluster but that’s all i’m

Going to do for this particular setup and i’m going to hit ctrl o to write the file and then ctrl x to exit and now i’m going to run a couple commands to build the manifest for my particular cluster now there’s a couple things that you

Need to install if you don’t have them already installed i do on this raspberry pi but you need to run apt get update to update your app caches and then run apt get install dash y build essential and that’s going to install the make utility along with

Some related things and golang to make sure that you have the go language installed on your raspberry pi and i already have them installed so it should say that and then then go back to the command line so now that we have those those dependencies i can run make

Vendor and so i’m going to take that clear this i’m going to run make vendor this is going to take a little while then i’m going to run make and this will also take a while as it generates all of the different yaml manifest files all right so it’s generated all of the

Yaml manifest files that kubernetes needs so now i’m going to do the same kind of thing i did with with the cube prometheus project i’m going to apply the setup manifests and that should create a monitoring namespace and all of the different things that go inside of it

And then i’m going to apply all of the other manifests that are generated and now that those have all been created kubernetes is going to start taking all the things that were just created through all these manifests and start scheduling them on nodes so you can watch that process if you use

Qb cuddle get pods in the namespace monitoring it will show you what’s going on in there and you can see that a lot of these pods are already running one of them’s still creating if you want to watch it you can use the watch command and it will let you see

That updated every couple seconds so you can see that prometheus is still getting up and running the containers creating it’s it’s likely pulling down the information to that raspberry pi uh the the docker image that’s going to run prometheus but you might notice that there’s a lot of instances of some of

These things there’s a bunch of arm exporters there’s a bunch of node exporters that’s because this project sets up a bunch of different pods one on every single raspberry pi to do things like get all the cpu metrics get all the memory metrics and get the temperature data and send it

All into a central prometheus instance and we’ll see that very soon once prometheus starts running sometimes when it’s starting up you might see an error the first time it starts but it usually gets into the running state pretty quickly and at this point i can also see

If there is a a way to get to these by saying qb cuddle get ingress dash and monitoring and ingress is just a way for kubernetes to give you a nice host name to access your services that are running and we’ll talk a little bit more about some of these things in the

Next deployment that we do so prometheus is running here and prometheus is aggregating all of the monitoring data coming from throughout the cluster into it and prometheus lets you browse all that data and there’s a lot of it there’s hundreds and hundreds of different things that you can monitor and most

Applications that run in kubernetes also put out metrics endpoints that can be aggregated in prometheus and it gives you things like let’s just do a really simple one up and you can see that these are all one that means that they’re up and running so you can monitor

Whether things are up or down you can graph it and obviously since everything is up and running there’s a lot of different things that are just one here but prometheus monitors all these things it’s not the best interface for something like a dashboard to see how things are doing at a glance

But prometheus is important to get all that data together so that you can browse it and see what’s going on in your cluster if you go to this target section you can see that everything is is up and running and sending data to prometheus so prometheus is happy and

Getting all that data together now to be able to browse that data more conveniently and in a little bit more usable way grafana is a great system for monitoring dashboards and alerting and sending you emails when things bad things happen and we can access it on this on this uh

Hostname and the default login is admin admin and i don’t want to save that password and it’ll prompt you for a new password when you when you log in the first time so i’m going to set a new password and then it takes you to its dashboard

Its dashboard can be customized you can put different things on here that you want you can star different dashboards on it but i’m going to go to the dashboard browser under manage and click on default to show all the all the dashboards that come with this cluster monitoring project

And thank you again so much to carlos edp carlos eduardo who has set this up basically saved a lot of my time in trying to do this stuff myself and he set up a custom dashboard that’s that’s tailor-made for k-3s clusters on raspberry pi called kubernetes cluster monitoring via prometheus

If i go here it gives us a lot of great information tells us memory usage on the whole cluster cpu usage on the whole cluster tells me if all the nodes are up or if any of them are down and how long they’ve been running

It gives me graphs of that data so i can see over time how things are running it can even monitor the pi cpu temperature so you can see a few of these pies like the master is 60 degrees celsius because it’s doing a lot of work coordinating all these other pods and

Scheduling things on different raspberry pi’s and managing our whole cluster for us and some of the other pies like down here worker 06 is only 47 degrees celsius because i guess it’s not got much going on there’s also different alerts set up so that if something

Goes bad like if the cpu usage goes too high it’ll start alerting on that or if the temperature gets too hot and the pi starts throttling and there’s other graphs down here too but the great thing is now i can monitor my cluster and make sure that when i’m deploying

Different applications on it or as i’m running applications i can make sure that i’m not running out of memory or running out of cpu or i don’t have nodes that keep going up and down which can happen sometimes especially when you’re running with raspberry pi’s with only one gigabyte of memory on them

So now that i have a monitoring system in place i can start to deploy other things on the cluster now that we have a way to monitor our cluster and see how things are running on it it’s a good idea to start running some things on the cluster

So i’m going to set this dashboard to update just the last 15 minutes just so i can see what’s going on the cluster has been pretty stable everything’s running well i don’t see any spikes in usage or anything because the only thing that’s running is the monitoring

But i’m going to run some software on it that i’m very familiar with because i’m an open source developer who started off using this software years ago when i set up my first website and that is drupal um i’m going to install drupal on this cluster and see how it works

I have a very basic installation of drupal and the way that i’m going to install it is just using some kubernetes manifest that i’m going to create using yaml and i have these up on my github gist site under under drupal.yaml a manifest in kubernetes is basically a way of describing

Something that you want to run on the cluster and there’s a lot of different things you can put into manifest in this manifest there’s a config map which is kind of like a settings file or some data that you want to put into a container that runs in kubernetes

So this is just a configuration for drupal and a note here this is not this is not the most secure way to do this there’s better ways to do this but for the purposes of demonstrating this in an episode today i’m just doing it this way so there’s a config map that

Has a configuration there’s a persistent volume claim this this tells tells kubernetes i want to have some space to write files and have that be persistent so even if drupal dies or the node fails i want to make sure that those files still exist so that when a new container

Is created those files don’t just disappear so i’m going to create that and then there’s a deployment and we saw some of these deployments from from the monitoring system a deployment basically says i want to have a container running i want to have a pod in kubernetes

That runs and if it fails i want it to restart itself and i want to be able to scale it up so i have multiple instances of that container running and i want to be able to deploy updates to it in a rolling fashion so that it

Deploys a new one the new one is online and then it takes down the old one so kubernetes will manage all that for us if we just use a deployment and you’ll notice that i just have replicas one here and that’s because this really simple example

Might or might not work that well if i have multiple replicas with most applications you’ll need to make some modifications and set them up a little bit more custom to make sure that they work correctly if you scale them up beyond one instance but this will work for our demonstration

Purposes and a deployment a lot of this stuff this is kubernetes yaml and there are plenty of memes around about kubernetes yaml usage and initially when you start using it you’re going to be kind of drowning in it and it’s it’s it can feel a little overwhelming but after you start working with

Different kubernetes resources you kind of understand how it works and it’s kind of like the matrix you don’t see the yaml anymore but you see the the resources you see a config map and a persistent volume claim and you see a deployment and you see the things in the deployment that come from

The other resources then you see services that expose the deployment to the world and then you see ingress that lets people access your application so it’s a little bit overwhelming in this video i i don’t have time to explain all of the different types and all the different options and parameters

But at a very basic level when you get a request for drupal on this cluster once we get this running we’ll request this host name and then this ingress resource will tell kubernetes hey when i get a request of this hostname i want to send it to this drupal service on port 80

And then this drupal service which is running on port 80 is going to say hey i’m going to go to the drupal app and the drupal app is running up here and it’s going to say hey i want to run this request through a container that’s running drupal 8.8 on apache

On port 80 and then drupal say okay i’ll serve that response and for that drupal also needs a database so there’s another manifest for mariadb which is an open source database that you can use with drupal and wordpress and other things and it’s going to have the same kind of

Setup it needs a persistent volume so that the data in the database can stay on the cluster even if the database container goes away or needs to be rescheduled on another node and then there’s a deployment that tells it hey i want to make sure this database

Is running all the time and there’s one replica databases can be a little bit complicated to run in kubernetes but most of the time they’re not so bad if you if you just need to have one replica and don’t need a cluster of database setups and then the database has a service this

Service is not exposed to the outside world it’s only going to be accessible by drupal in the drupal namespace and that’s one thing that’s really nice about kubernetes is you can say i want a namespace for all my drupal stuff and i want another namespace for

My monitoring stuff and i don’t want the monitoring monitoring things and the drupal things to interact with each other because the monitoring system doesn’t need to see the database that drupal sees there’s other things that you can do for security too but namespaces are a very helpful way to organize resources by

Application in a kubernetes cluster so what i’m going to do is take these two manifests i’m going to take the drupal one and copy it i’m gonna cd back into my home directory clear this and i’m gonna make a directory for drupal cd into that directory that i created

And i’m going to create a file called drupal.yml with nano paste that manifest save it with ctrl o control x and then i’m also going to make a mariadb manifest so copy that you know maria db dot yaml paste it save it and now i have these two

Manifests that i’m going to deploy into my kubernetes cluster and i’m just going to use qb cuddle apply dash f and give it the manifest file drupal.yaml it’s going to create all those resources you can actually apply multiple manifest files in one instance and in this case actually i forgot to do

What it says up here in the documentation i have to create a namespace for this to run in so i’m going to create that namespace first and then i’m going to apply this manifest and then i’m going to apply the mariadb db.ml and now it’s going to create all these

Things so if i say cubie cuddle get pods in the drupal namespace it should show me that these containers are creating and let’s watch that and see oops let’s watch that and see how long it takes what it’s doing is it’s downloading the drupal docker image whatever the image is in this manifest

To the raspberry pi where it’s running and it’s also going to download the mariadb image to the to the node where it’s running and we can also check if i go out of here i can say qb cuddle get pod stash and drupal for the drupal name space and then dash

O wide that gives a wider output that has more information you can see that it’s scheduled drupal to worker o3 and it scheduled mariadb to worker o4 a cool thing that kubernetes is doing for us and i’m going to go ahead and go back here and see when they’re ready

Is kubernetes can schedule pods wherever they can fit so if you have a node that has more memory and you need to have more memory for your application it will move that application to the node that has the memory that you need or if you have certain features like if

You’re building a bigger bigger cluster with more things than just raspberry pi’s you can put a computer with a video card in it and you can do machine learning processing on that computer and tell kubernetes hey this application needs to run on the computer with the dedicated video card

So there’s a lot of different things you can do with kubernetes scheduling by configuring your applications the right way and you can see here that drupal is running but it’s not yet ready that’s because in drupal in this deployment we have these these probes that kubernetes uses to

Know when it’s ready to actually serve up requests so until that time if i say qb cuddle get ingress dash and drupal this is going to tell me how i can access drupal through this url and i can load that here until until this says ready which now it says ready

Kubernetes won’t route requests to that actual service that’s running in the back end but now drupal’s installer’s coming up so i’m going to go ahead and install drupal this is going to take a little time and it will also give me a warning when i start the installation because

This is a 32-bit operating system and can’t store dates that are beyond the year 2038 because of limitations of 32-bit php but i’m going to ignore that error and go ahead and install drupal while drupal is installing you can even go to the grafana dashboard and you can see

That some of the pods cpu and memory is going up a little bit because drupal’s installer takes a bit of power and a bit of memory to be able to run so drupal’s running on worker o3 and you can see that its memory consumption is a little higher as well as its cpu

We can also check on the raspberry pi temperature and the temperature’s gone up a little bit but we’re still well under the throttling threshold so we’re safe for now and now that drupal’s installed i’ll configure the site for the turing pi and there it is we have drupal running

On the turing pi cluster drupal is a pretty good cms and a lot of people do like it but there is a cms that’s a little bit more familiar to more people and has been around about the same amount of time and it’s also built in php and that’s called wordpress

So i’m going to go to another configuration that i have for kubernetes for wordpress and if you look at it a lot of the things in this configuration are going to be almost identical to drupal it needs a persistent volume claim just like drupal it has a deployment that runs wordpress

And mounts that volume claim it has a service that exposes wordpress and it has ingress that lets you access wordpress so let’s set that up as well i’m going to go out of here cd back up a level clear this and i’m going to make a new directory for wordpress maker word press

And i’m going to go ahead and grab these two manifests and i’m going to make a new directory called wordpress cd into wordpress and then make this file maria dv.aml paste the manifest save it close it then i’m going to get the other manifest for wordpress nano wordpress.yaml

Paste it save it close it and then i’ll say kuby cuddle apply actually i this time i’ll do it in the right order i will create the name space and then i’ll apply the resources inside of that name space so i’ll do that and then qb cuddle apply dash f wordpress

And then i’ll do the same thing for mariadb and then i’ll watch as it deploys them watch qb cuddle get pods dash n word press so it looks like it’s creating those containers i’m going to go ahead and get the ingress and see uh and see if i can show you

What happens if you try loading this before it’s ready so kubernetes is now not routing traffic to this wordpress backend until the point that it is saying that it’s ready so you can see it’s still not ready and so we’re getting service unavailable all right so it says that everything is

Running i’m going to go back over to the browser and refresh this page and should be giving me the wordpress installer at this point which it is so i’ll fill this out and i’ll give it a weak password test at example.com and i don’t want search index and search

Engines to index the site even though it’s running locally in my house and will not be accessible over the internet at all and now i’m ready to log into it alright so i have a wordpress site running here and if i go here this is the new wordpress site that i

Have so now i have drupal and wordpress both running inside this cluster and if i look at all the pods so i’m going to say qb cuddle get pods and then give it all name spaces and then say dash o wide i’m going to see where these pods are running

Kubernetes has distributed the pods across all the different nodes so you’ll see that there’s there are pods running let’s see where’s drupal is running on worker o3 drupal’s mariadb is on o4 wordpress is on o2 and its database is on o5 so kubernetes is spreading these resources

Over all the different raspberry pi’s to make sure that all the different applications i have running have all the resources that they need to be able to run well and that way if i were to do a load test and load this wordpress site and load the drupal site over and over again

Those requests would be get getting routed to the different nodes and the resources would be shared and and it’s a lot easier than trying to deploy things yourself especially if one of the nodes goes offline because in that case kubernetes can see oh worker 05 is down

And after about five minutes or so it’ll start rearranging things and putting things onto nodes that are running so wordpress and drupal are nice it’s there’s some good applications for running websites and things but usually when you’re using raspberry pi’s you want to have a little bit of fun

So in my case sometimes i like to have fun by playing minecraft minecraft is a game that’s been around since 2014 or 2015 i don’t remember exactly when i think i started playing it around 2015. uh but minecraft lets you play and kind of it’s kind of like i like to think of

It as legos but in a computer and there’s lots of different things you can do with it and minecraft has a server that you can run so that you can play a private game or a public game with other people that is running on a single server so you can have multiple people

Join in the same game and you can run this on kubernetes and if you search around for minecraft kubernetes like you might do if you wanted to run it on kubernetes you might find that there’s a helm chart for it so i’ll look for helm in here

And helm is a popular thing for running applications on kubernetes and uh there’s there’s a lot of different ways that you can run things on kubernetes helm is probably one of the most popular a lot of people also just use plain manifest files like we did for

Drupal and wordpress and you might use other tools like customize or you might use something like ansible and template those files but helm is yet another way to deploy them and to have values that are templated in place in these things and there’s lots and lots of different helm charts

It just so happens that this minecraft one works pretty well for our needs because it can be made to run on raspberry pi’s just like any other kubernetes cluster so to get these running you actually need to install helm first and i believe i already have it installed

You can check by running helm and see if it outputs helm’s help but i’m going to clear that away if you need to install helm it’s pretty simple you can just search for install helm and it will give you this this docs page that says download the right version and then

Expand that version and then copy the helm binary out of it into user local bin so if you’re using a raspberry pi like in this case using hyperios which is 32 bits you would download this linux arm version if you’re using raspberry pi os 64-bit or another 64-bit os

You would use linux arm 64. so i downloaded that and i copied it into the user local bin folder following these directions and now i should be able to start installing helm charts including this minecraft chart however i’m going to need to customize it a little bit for the raspberry pi

So if you look at this it has a command down here first you need to make sure that you have the stable repository that this is in so if you go to helm charts you can see in the readme in the documentation it says you need to run this command to

Enable the stable repo so i’m going to go ahead and do that now that adds the stable repository that has the minecraft chart and tons of other charts that are in this in the same repository and then after that it wants you to deploy minecraft into your server but

One thing that i want to do is make sure it’s in its own namespace so this this default command doesn’t have a namespace so i’m going to use a namespace i also need to specify some things i need to accept the end user license agreement which this is doing but i also

Need to specify some other things like i need to make the world size a little smaller to be able to run it well on a slower raspberry pi compute module and i also need to make the view distance a little shorter too that’s another thing that you can do in minecraft

To uh to make it a little speedier so i’m going to do those things with some values that i can specify in a values file and i have that values file i have those set up already because i set this up before this video and i’m going to create a values file

I’ll call it minecraft.yaml and i’m going to put these values in it so there’s a few other things too that i do that i customize that i set these probes that say whether it’s running or not to have a little bit more of a delay because it takes a while for minecraft

To generate the world that it is going to run on the server the first time it runs and on the raspberry pi compute module it can take up to 15 minutes on your laptop it would maybe take a minute or less and and on a new raspberry pi 4 it only

Takes a couple minutes or up to 5 minutes but since it takes a bit longer i had to customize this i also set the version of the minecraft server to run i told it to agree to the license agreement i put it on easy difficulty so i didn’t get exploded by

Uh whatever those little guys are that run around and explode you and i also put a message the message of the day that pops up when you join the server and i reduce the world size and view distance a little bit so i’m going to save this file

And now i’m going to run the command to install this chart first i need to create the namespace for it so i’m going to say qbcuddle create namespace minecraft and then i’m going to run this helm install command which is going to install this version of the chart 122 in the

Minecraft namespace that i just created using all the values in the file that i just created and it’s going to call this helm deployment minecraft and it’s going to get it from the stable slash minecraft so the stable chart that we installed up here and the minecraft chart that’s in it so

I’m going to go ahead and run that and it’ll take a little time if you get an error about it not being able to connect you might need to make sure that the cube config environment variable is set correctly so that helm knows how to connect to the k3s cluster

And apparently i have the wrong name for this so let me choose minecraft.yml instead of yml that’s the one thing that i sometimes i use dot yml sometimes yaml i don’t know why i do that i should just use one or the other but you’ll find that a lot of times in

The kubernetes ecosystem a lot of things use yaml a lot to use yml so now everything is running and i can get this service using this command get the minecraft service so i’m going to go ahead and run that and this is going to give me the ip

Address over which i can access minecraft from any other computer on my network so it’s this ip address and this port number 3767 so if i open up minecraft it’s been a while since i’ve opened this on my computer hopefully it doesn’t kill the computer by doing updates or something like that

I’m going to open it up and try to connect to this local server and it’s probably going to fail the first time because minecraft like i said takes quite a while to actually start loading so i’m going to say qb cuddle get pods and minecraft and it says that it’s running but it’s

Not yet ready that’s because it’s generating the world probably right now so while it’s doing that i’m going to go ahead and say qb cuddle logs n minecraft and then give it this pod and this is going to tell me what it’s doing right now so it’s doing some stuff still it’s not

It’s not yet set up i’m going to use dash f and that way it’s going to follow the logs on that container and see what it’s doing so you can see it’s loading recipes it’s loading advancements all these other things meanwhile it looks like minecraft itself is running right here

And if i try connecting to the server at this time i’m going to try using direct connect using the ip address up here where is it there it is this ip address dot 91 port 3767 and it’s going to fail because right now it’s not actually responding it’s it’s still

Doing uh some of the setup stuff so i’m gonna let this sit and go back and let this sit and we’ll we’ll see how it we’ll see how long it takes all right so that was excruciatingly long i know that it was sped up in the video that you just saw but

In real life that actually took a really long time to spawn the area and that’s one one thing that i will get into in the next video and i’ll mention that in a bit uh is the benchmarking and performance between the the compute module 3 plus and the raspberry pi 4 and

Other systems like my core i9 macbook pro that i’m recording all of this on but anyway so minecraft is now running and it should be working you can see that sometimes it gets a few ticks behind in minecraft that just means that the server is a little bit overloaded

And as long as that doesn’t keep going and keep increasing to hundreds and hundreds of ticks it’s just going to cause you know no noticeable problems in minecraft itself but now the server is running so i’m going to go in here and get that service again

And check what the ip address is and i’ll go to minecraft itself which is right here and i’m going to connect to this server 10.0.1 on port 3767 and that should connect us to this minecraft server that’s running we’ll see if that’s the case there’s minecraft multiplayer direct connect and it’s server 10.0.1.81

For 3767 let’s join and this should work we’ll see if it actually does and here we are we are in minecraft you’ll notice it’s a little bit slow uh minecraft on a raspberry pi is not necessarily the fastest thing in the world but i if there’s one thing i remember from minecraft before

It was something like you’re supposed to dig straight down So minecraft is really fun and it may or may not be the best idea to run minecraft on a compute module 3 plus but it does run and it can be it can be fun still i wouldn’t run it with lots and lots of users connecting to it or anything on that pi

But on a raspberry pi 4 it might not be so bad or of course running a minecraft server on another kubernetes or k3s cluster is going to be a better option especially if you want to play online with your friends now there’s one other tool that i like to install on

A raspberry pi on my home network to help me to block ads and to also set up custom dns roles and that’s pihole pihol is a really well well supported application that it doesn’t have to run on a raspberry pi but it was originally conceived for running on raspberry

Pi’s because it doesn’t use too many resources and it’s a really helpful utility to help you save bandwidth costs and to save make things load faster because advertisements and tracking things aren’t loaded on pages things like that so there’s actually a chart another helm chart

For pi hole and that’s in let’s see it’s mojo 2600 has this kubernetes chart that uses helm to install pi hole and there’s a again there’s a couple settings in the in the chart values that have to be overridden to get it to run on a k3s running on on

Raspberry pi’s like we have here so i’m going to do the same kind of thing that i did for minecraft i already have helm running but this is actually using a different repo so i’m going to use helm repo ad to add this other repo and then i’m going to run helm repo

Update which makes sure it pulls in all the latest information from that repository and then this of course is installing this into the default namespace and i don’t want to do that i also want to supply my own values so i’m going to grab the values that i have for this

To run it on my network with the k3s so i’m going to say nano and i’ll call this pihole.yaml and these values are going to set a few different options that make it work a little bit better on the turing pi cluster and again there are some settings in

Here like i’m setting the admin password to admin that’s not a very secure default and if you’re using this in the real world you should probably set that to something else and make sure that you have things set up in as secure a manner as possible

But i’m going to set this and i’m going to set these options for the load balancer ip to the load balancer server which i’m using is 10.0.100.99 so i’m going to set those up and then deploy this chart save this and exit and then i’m going to create a namespace for pi hole

Because i don’t want this to just go in the default namespace and once that’s created i can deploy the chart into that namespace and i’m going to use version 176 which is the latest version of this chart in the namespace pihole using the values from this this file

I’m going to call it pi hole and it’s coming from this chart repository and the chart’s name is pihole so the same thing here i’m going to say qb cuddle get pods in the pi hole namespace and let’s see if it starts running so it’s pending so it’s it’s going to be

Running these soon so let’s go ahead and watch this and see how long it takes all right so now pi hole is running and i’ve actually added to my etsy host file so i said nano and on my mac i’m doing this i said nano slash etsy help slash host and then i

Added into that file a line that says 10.0.10 and then pi.hole so that lets my mac know that if i try to access this url it should go to that raspberry pi where this is running and so if i go pi.hole i believe i should see the admin console come up

Here you can see that it’s it shows the raspberry pi statistics so it’s funny pi hole shows the temperature of the raspberry pi and if i go over here i can correlate that by the fact that this i believe worker 1 was the one that was setting up pi

Hole if i go down to the temperature i can see that worker 01 is currently at 60.15 celsius which is uh pretty close to 59.6 so piho is monitoring it and grafana is monitoring it through prometheus and we can see that pihul is running here and i can also log in as admin

Using of course the password admin which is an insecure default so make sure you change that and i can see all the activity going on now to use this i can access the the load balancer that k3s set up on all the different pies so if i say qb cuddle get service

Dash and pi hole i can see that there’s a load balancer set up for tcp and udp the tcp one’s not actually running right now because there’s it it interferes with other things that are running on the servers uh ports 80 and 443 so that’s going to

Get stuck in pending state but the udp load balancer is running on 10.0.1.99 and what i can do is on my mac i can start using my mac go through the dns on this pihole server that’s running in kubernetes and to do that i just go to system preferences and then

Network and then for whatever interface that you’re using i have an ethernet connection and a wi-fi connection i can say advanced and then change the dns server so right now it’s just using my router the default but i’m going to add this one which is 10.0.1.99

And say ok and apply and now my mac is going to start using dns through here and you can see it already is getting queries so my mac is sending web requests now through the pi hole and the pi hole will start blocking things that it identifies

As advertisements so if i go in my web browser to let’s say cnn then it’s going to start loading the page and there might be some things that that pihl starts blocking and you can see it’s blocking 24 queries and you can go in and look at the log

And see what things it’s blocking but a lot of news websites if you don’t use it with pi hole and you notice that they’re slow and then you do use it with pi holes sometimes websites that take 20 or 30 seconds to load might take one or two seconds because

All the advertisements and tracking stuff that happens so pihul is really awesome for blocking advertising and tracking content that makes the web slower and uh makes lots and lots of annoying and and pop-up and all the crazy kind of ads that happen uh show up on your computer

So that is pihole and it’s pretty awesome it also lets you do things like set up a local dns record so you can refer to your raspberry pi’s by a dns name instead of by an ip address and all of those kind of nice things you

Can find out more about pi hole at pihole.net but that’s one of many different things that you can run on a cluster a kubernetes cluster like this one we have monitoring setup that lets us see all of the different nodes that are running and see their cpu and memory usage

You can inspect individual pod usage all those kind of things so we have monitoring set up with prometheus grafana and alert manager we have a drupal website running we have a wordpress website running we have minecraft running so that we can connect to it from our minecraft game and have a shared server

We have pi hole and there’s still capacity left on this cluster so we could install more and more things until we fill it up and if we do fill it up we could add more raspberry pi’s the turing pi board itself only has seven slots but you could

Actually add other raspberry pi’s to the cluster all you have to do is use k3s to get a token from the master and then join a new node to it you can add more more raspberry pi’s however you want to using k3s or doing it by hand

There’s just a lot that you can do with kubernetes and running lots of different applications on it and the cool thing about this is all of these applications are scheduled by kubernetes on nodes that have space so you don’t have to spend time thinking about where you want to run drupal and

Where you want to run wordpress and where you want to run minecraft kubernetes takes care of all that for you and if i were to unplug one of these raspberry pi’s which is inadvisable because it could corrupt the memory on it if i were to do that kubernetes would

After a certain timeout period start taking all the things that were running on that and start moving them to other nodes as much as it can until of course it runs out of memory or cpu so those were just a few of the things that you can run on a cluster

But throughout my time working on these different things i learned a lot about the limitations of the compute module 3 plus so i’m really looking forward to the compute module 4 which is coming out later this year it should be a lot faster and hopefully it will have more options available with

More ram and it would be really crazy for me to do all this work for these videos and not share it with you time and again you’ve been very generous in supporting me like on patreon and github sponsors and if you don’t already support my work there please consider doing so

So to give back i’ve been secretly maintaining a repository for this project it’s still kind of a work in progress but it will quickly and automatically bootstrap all the apps that i just showed in this video on your own cluster using ansible it doesn’t even have to be

A turing pi cluster and it doesn’t even need to use raspberry pi’s you can run it on any kind of arm cluster and today i’m releasing that project as open source code on github so you can use it as you like the link is in the description below

In fact i ran this automation on my own pi drama cluster that has four raspberry pi 4s with two gigabytes of ram each and then i did a bunch of benchmarks on the two clusters to see how they perform and the results were surprising in many cases the pi drama cluster ran things

Twice as fast as the turring pi cluster there are a number of reasons for this but the main one is that the pi 4 is overall a much better and faster computer than the compute module 3 plus but how much better and does the new 64-bit raspberry pi os change anything

And what are my thoughts on the turning pi overall after having done all these videos well to find out subscribe to the channel in the next video i’m going to give a more thorough review of the turing pie itself and please comment below if you have any

Questions about the turing pi k3s or anything about clustering i will do a follow-up video soon with questions and answers until next time i’m jeff gearling

This video, titled ‘Raspberry Pi Cluster Ep 4 – Minecraft, Pi-hole, Grafana + MORE!’, was uploaded by Jeff Geerling on 2020-06-05 21:18:34. It has garnered 282290 views and 6165 likes. The duration of the video is 00:54:31 or 3271 seconds.

This is a BIG episode; I’m going to walk you through deploying a monitoring stack (Prometheus, AlertManager, and Grafana) on the Turing Pi K3s cluster so you can see how it’s performing. Then I’ll deploy Drupal and WordPress, two popular PHP-based website building CMSes. And then for a little more fun, I deploy Minecraft server using Helm. Then I deploy Pi-hole for ad blocking and custom DNS!

I also am revealing my open source Turing Pi Cluster project on GitHub, to go along with the video series: https://github.com/geerlingguy/turing-pi-cluster

More details and links (along with a transcript) are available on my blog: https://www.jeffgeerling.com/blog/2020/raspberry-pi-cluster-episode-4-minecraft-pi-hole-grafana-and-more

And here’s the open source GitHub project: https://github.com/geerlingguy/turing-pi-cluster

Sponsor me on GitHub: https://github.com/sponsors/geerlingguy Support me on Patreon: https://www.patreon.com/geerlingguy

Chapters:

00:00 – Introduction 00:24 – On kubectl, tabs and spaces, vim and emacs 02:03 – The Kubernetes-on-Pi disappointment cycle 04:09 – The Minecraft server venn diagram 04:59 – Monitoring suite – Prometheus, AlertManager, and Grafana 19:43 – Drupal on the Turing Pi 29:28 – WordPress on the Turing Pi 33:49 – Minecraft on the Turing Pi 44:15 – Pi-hole on the Turing Pi 52:28 – Summary and What’s Next?

  • Minecraft Modding: The Mentor CodeLab

    Minecraft Modding: The Mentor CodeLab Exploring Tags in Minecraft: Customizing Your Gameplay Understanding the Power of Tags In the vast world of Minecraft, tags play a crucial role in categorizing and labeling various blocks and items. These labels allow for efficient identification of groups of logical elements within the game’s code. By assigning tags to items and blocks, players can streamline decision-making processes based on these labels. Creating Custom Tags The ability to define personal and common tags in Minecraft opens up a world of possibilities for players. By generating custom tags, individuals can tailor their gameplay experience to suit their preferences. Whether assigning… Read More

  • Tiny Dripstone Delight: Minecraft Farm Fun!

    Tiny Dripstone Delight: Minecraft Farm Fun! In Minecraft’s world, a mini farm takes flight, Automatic dripstone, shining bright. Compact and easy, with redstone in sight, Collecting resources, day and night. Just a chest, a hopper, and some glass, An observer, a piston, for the task. Dripstone block, pointed dripstone too, Water flowing, the farm will brew. Lava in cauldrons, a fuel source grand, Dripstone blocks, traps at hand. With a grin and a spin, the farm is complete, For Minecraft players, a useful feat. So craft away, in this blocky land, With rhymes and fun, let’s all lend a hand. For gaming joy, and creativity’s… Read More

  • Escaping the Superflat Jungle

    Escaping the Superflat Jungle Minecraft Adventure: Surviving a Superflat Jungle Embark on a thrilling Minecraft journey in an infinite superflat jungle world! Join the excitement as our protagonist navigates through this unique and challenging terrain, facing dangers and discovering hidden treasures along the way. Chopping Trees and Crafting Tools Our adventure begins as we spawn on top of a massive tree in the jungle. With determination, our protagonist starts chopping down the tree to gather resources. Despite the flat landscape, dangers lurk beneath, including slimes that must be avoided. After collecting wood, crafting basic tools becomes essential for survival. As night falls, the… Read More

  • Crafting a Minecraft Prison!

    Crafting a Minecraft Prison! Expanding the World of Minecraft: Building a Prison Exploring the vast possibilities of Minecraft, players often delve into creating intricate structures that showcase their creativity and imagination. In this Minecraft Build, the focus is on constructing and expanding a prison within the game. Creating a Secure Environment Building a prison in Minecraft involves designing a secure environment to confine virtual characters within the game. The player’s creativity comes into play as they construct walls, cells, and other necessary facilities to mimic a real-life prison setting. Attention to Detail Attention to detail is crucial when building a prison in Minecraft…. Read More

  • Day 2: Pillar Chaos – 1K Days in Better Minecraft

    Day 2: Pillar Chaos - 1K Days in Better Minecraft Day 2 – Mixed Pillars Galore – 1,000 Days in Better Minecraft [Creative] Embark on a journey through the pixelated world of Minecraft with our dedicated player as they craft their way through 1,000 days of adventure. On Day 2, our builder focuses on creating stunning pillars to enhance their virtual abode. Materials Used: Echo Log Maple Log Acacia Log Purple Terracotta Bricks Purple Terracotta With a mix of logs and terracotta, our player is set to transform their house into a masterpiece. The choice of materials adds depth and character to the structure, making it stand out in… Read More

  • Mezzy’s Surprising Gaming Adventure

    Mezzy's Surprising Gaming Adventure The Terrifying World of Minecraft Mods: Exploring the “Dread” Modpack Embarking on a Solo Adventure Join the journey as our fearless explorer delves into the eerie world of Minecraft mods in the “Dread” modpack. What horrors await in this solo adventure? Encountering the Unknown Follow along as our protagonist encounters mysterious entities and unsettling environments. Will they survive the chilling encounters? A Creepy Companion Meet a peculiar entity that seems to be watching our explorer’s every move. Is this companion a friend or foe? Unraveling the Mystery As the adventure unfolds, secrets are revealed, and the true nature of… Read More

  • Escape Reality: Minecraft Survival Day 1

    Escape Reality: Minecraft Survival Day 1 Minecraft Daily Survival Let’s Play: A Journey Through Minecraft Welcome to a brand new Survival Let’s Play series in Minecraft with Solomon, also known as PCG on YouTube. This vanilla survival let’s play is a daily escape from reality where you can join Solomon in exploring, building, and collecting all 145 trophies available for the game on PS4/PS5. Get ready for a relaxed and engaging gameplay experience as you dive deep into the world of Minecraft. A Daily Journey Through Minecraft Solomon’s series is a daily upload, providing a consistent and comforting experience for viewers. Each episode is around… Read More

  • Redstone Farm Finale! Minecraft Survival #20

    Redstone Farm Finale! Minecraft Survival #20 Exploring the Redstone Farm in Minecraft Join EpicAlyssa1250 and Andrew in their latest adventure in the Boyfriend & Girlfriend Minecraft Survival Series! In this episode, they delve into the intricacies of the Redstone Farm, a key feature in their virtual world. Redstone Farm: A Hub of Innovation The Redstone Farm serves as a hub of innovation in the Minecraft world. It provides essential resources and materials for crafting, building, and surviving in the game. With its automated systems and clever design, the Redstone Farm showcases the players’ creativity and problem-solving skills. Key Features of the Redstone Farm Within the… Read More

  • Bedwars Shenanigans

    Bedwars Shenanigans Minecraft Bedwars Adventure with BlueLedYT and WeebRed Software and Equipment Used: For this epic Minecraft Bedwars adventure, the team utilized: Recording: OBS Studio Editing: Capcut They also had the following hardware: Keyboard: Random Logitech keyboard Mouse: Bloody A60 Mic: Portal 7.1 HG28 (headphones mic) GPU: NVIDIA GeForce RTX 3050 Ti CPU: AMD Ryzen 5 RAM: 16GB Resource Pack: The team played with the Bombies 180k resource pack by Tory, adding a unique visual flair to their gameplay. Subscribe to BlueLedYT and WeebRed: If you enjoyed the gameplay, make sure to subscribe to their channels: BlueLedYT WeebRed Highlights from the… Read More

  • New gaming hack! Combining items in Minecraft!

    New gaming hack! Combining items in Minecraft!Video Information [Music] hey there my name is Inc today I’m back in Minecraft but I can combine items our goal today is to beat the Ender Dragon and if you enjoy I’d really appreciate if you subscribed let’s get into it okay this is a cool Spawn oh hello there all right now to start with this pack what we need to get is a smithing table so we’re going to have to go mining and get some iron but before we go down I’m going to grab some food all right let’s grab some Stone and start smelting… Read More

  • INSANE 3D Murder Mystery on The Hive! 🕵️‍♂️| Minecraft

    INSANE 3D Murder Mystery on The Hive! 🕵️‍♂️| MinecraftVideo Information fale pessoas beleza Hoje estou aqui para trazer um vídeo diferenciado que eu vou trazer aqui PR vocês rapaziada estamos aqui para trazer jogando aqui no derive né literalmente est jogando aqui no derive jogando aqui murder Mystery aqui no derive eu já joguei esse esse minigame há um bom tempo atrás tipo faz tempo mesmo galera tipo eu já gravava né fazer um desafio da mand né a época que o meu canal tava nascendo aí eu tava pensando aqui né nostalgia né jogando aqui myy e bom rapaziada deixa o like aí no canal ativa o… Read More

  • Unbelievable Minecraft TikTok Hacks 🔥💥🤯

    Unbelievable Minecraft TikTok Hacks 🔥💥🤯Video Information This video, titled ‘VIRAL MINECRAFT TIKTOK HACKS 🔥☺️😊!! |’, was uploaded by Quanny on 2024-05-07 10:52:06. It has garnered 7171 views and likes. The duration of the video is 00:00:15 or 15 seconds. how to make end portel in Minecraft https://youtube.com/shorts/Ttxat7xCroM?feature= share #shorts #viral #tiktok hacks #minecraft #hacks #viraltiktok hacks #ytshorts #ytshortsindia #4 #5 #6 #7 #8 #9 #10 #11 #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23 #13 #24 #25 #26 #27 #28 #29 #30 31 #32 #33 #newyear2023 #2023 #horrorgaming #2022 @techsgamerz youtube.com/@TECHSGAMERZ minecraft tiktok hacks minecraft minecraft hacks techno gamerz minecraft… Read More

  • ULTIMATE Minecraft Showdown: Noob vs Pro vs Hacker! 🔥

    ULTIMATE Minecraft Showdown: Noob vs Pro vs Hacker! 🔥Video Information This video, titled ‘Minecraft Noob vs Pro vs Hacker in saving villager….#shorts #minecraft#viral#trending#gamer#gaming’, was uploaded by I_AM_DEVIL on 2024-01-15 03:59:26. It has garnered 2878 views and 120 likes. The duration of the video is 00:00:59 or 59 seconds. Read More

  • Explore Lunarie – Freebuild Heaven on Minecraft!

    Explore Lunarie - Freebuild Heaven on Minecraft!Video Information This video, titled ‘Minecraft Community Server + Freebuild Tour!’, was uploaded by Lunarie on 2024-04-13 15:11:49. It has garnered 199 views and 14 likes. The duration of the video is 04:16:59 or 15419 seconds. I’m very happy that everyone can play on the server from now on 🙂 Read More

  • Insane Minecraft Dance Duet with Kuga Guga!

    Insane Minecraft Dance Duet with Kuga Guga!Video Information This video, titled ‘brawa #music #minecraft #musica #funny #dance #memes #roblox #duet #love #edit’, was uploaded by Kuga Guga on 2024-06-08 18:33:12. It has garnered 8 views and 2 likes. The duration of the video is 00:00:16 or 16 seconds. Read More

  • Death Maul

    Death MaulThis server features a custom gamemode where one main player that must survive in a world with mobs and monsters possessed by other players. Their goal is to kill the main player to take their place. Six starting classes to choose from with custom items and perks. – (Ghosts) control monsters and mobs to kill the human – Abilities for each monster. Creepers blow up, spiders shoot webs, etc. – The (Human) must survive and reach level 100 to win. – Main character can choose one of six classes. – If the human dies, another will take their place! -… Read More

  • Janitor’s Closet SMP Semi-Vanilla Roleplay Worldbuilding Whitelist LGBTQ+ Friendly

    Welcome to the Janitor’s Closet! We are a worldbuilding/roleplay based SMP, creating a fun atmosphere where you can build your own culture, nation, story, and impact without restrictions on era or genre. Join our unique community where you can create religions and cultures, or join existing ones! Experience lore-related and in-game events, or even host your own! Discord Info: Join our Discord here to get started. Fill out a quick app after reading the rules to join our community. Our plugins include Dynmap, SimpleVC, SetHome, Deadchest, CombatLog, Brewery, and more! Read More

  • Nexaris | Worldbuilding

    Nexaris | Worldbuilding================= Nexaris=================Nexaris is a diverse server under the Geopolitical, Nations, Towny, Roleplay, and Worldbuilding categories. Forge your Nation, make alliances, and conquer the world! Create your religion and worship your god(s). In Nexaris, politics, and territory control are crucial. Players compete to control regions, make deals with others, and join in big events that shake things up. Every decision YOU make can greatly impact the server’s history, shaping its future.We, the staff of Nexaris, try to provide the best experience for players. The server itself has not been launched yet. But it will be very soon! Join our Discord! We’ll… Read More

  • Minecraft Memes – “Y’all really hate Keep Inventory?”

    “Why do y’all hate keep inventory? Because losing all your stuff builds character…and rage-induced tears.” Read More

  • Chamber Danger: Surviving the New Trial Tango

    Chamber Danger: Surviving the New Trial Tango Welcome, gamers, to a brand new day, Where Minecraft adventures come out to play. In this episode, we dive into the unknown, Exploring the Trials, with skills to be honed. First up, enchanting, a magical art, Adding power to weapons, straight from the heart. My village is thriving, with buildings so grand, And an enchanting library, where knowledge will stand. But the real fun begins, in the Trial Chambers, Where challenges await, testing our gamers. With my trusty dog army by my side, We’ll conquer each trial, with nothing to hide. So join me on this journey, filled with… Read More

  • Hot Minecraft Memes: Crafting Laughs!

    Hot Minecraft Memes: Crafting Laughs! “Why did the creeper break up with his girlfriend? Because she couldn’t handle his explosive personality!” #minecraftmeme #relationshipproblems #boom Read More

  • Unbeatable Minecraft Duplication Glitch 1.21

    Unbeatable Minecraft Duplication Glitch 1.21 Minecraft Bedrock 1.21 Duplication Glitch Introduction The Minecraft Bedrock 1.21 Duplication Glitch has been making waves across all platforms, including PlayStation, Xbox, Switch, MCPE, and PC. This glitch allows players to duplicate items in the game, providing them with an advantage in their gameplay. How It Works The Duplication Glitch is a fascinating exploit that players can use to their advantage. By following a specific set of steps, players can duplicate items in their inventory, giving them an edge in crafting and building within the game. Step-by-Step Tutorial The Hook: Players are drawn in by the allure of duplicating… Read More

  • Triple Ender Dragon Takedown in Minecraft!

    Triple Ender Dragon Takedown in Minecraft! Minecraft Adventures in Truly Bedrock In the world of Minecraft Truly Bedrock, the adventures never stop! PlodPlod, a dedicated player, recently embarked on some exciting new projects and challenges with the TB crew. Let’s dive into the action-packed episode! Automatic Sorting System PlodPlod showcased their engineering skills by creating an automatic sorting system for storage. This system not only streamlines the organization of items but also adds a touch of efficiency to the gameplay. With this setup, managing resources becomes a breeze, allowing for more time to focus on other exciting tasks. Triple Ender Dragon Battle One of the… Read More

  • Rare Halloween Moon Crab Spawns in Minecraft! Day 1 Hunt!

    Rare Halloween Moon Crab Spawns in Minecraft! Day 1 Hunt!Video Information This video, titled ‘🔴Pokemon x Minecraft?! Mythical Cobblemon Day 1!🟢’, was uploaded by HalloweenMoonCrab on 2024-05-25 04:45:45. It has garnered 230 views and 3 likes. The duration of the video is 05:27:15 or 19635 seconds. Pokemon meets Minecraft?! This is wild! Welcome to Day 1 of the Mythical Cobblemon! Season 2 kicking off with a ton of fun. want to play? 📲 Discord – https://discord.com/invite/mythicalnetwork 🎮 Modpack -https://www.technicpack.net/modpack/pixelmon-513-pro.1072839 🖥️ Installation Guide – Coming Soon it’d mean a lot to me if you’d like the video and comment if you liked the stream below! 😀 Twitter: https://twitter.com/hmooncrab Peep the… Read More

  • EPIC PRANK: Mikey Maizen vs. JJ in Minecraft Mod!

    EPIC PRANK: Mikey Maizen vs. JJ in Minecraft Mod!Video Information This video, titled ‘JJ use DRAWING MOD to Prank Mikey in Minecraft (Maizen)’, was uploaded by Mikey Maizen – Minecraft on 2024-06-23 17:00:20. It has garnered 5280 views and 44 likes. The duration of the video is 00:16:12 or 972 seconds. JJ use DRAWING MOD to Prank Mikey in Minecraft (Maizen) This video is an unofficial work and is neither created nor approved by Maizen Sisters. Maizen – @maizenofficial Thanks for watching, I hope you will enjoy my videos! Read More

  • Mind-Blowing Logic in Minecraft! Click Now! 🔥

    Mind-Blowing Logic in Minecraft! Click Now! 🔥Video Information This video, titled ‘Логика Майнкрафта! #майнкрафт #minecraft #funtime #сервер #holyworld #anarchy #shorts’, was uploaded by ArianCraft on 2024-06-04 11:07:25. It has garnered 817 views and 25 likes. The duration of the video is 00:00:26 or 26 seconds. Read More

  • Secrets Revealed: The Truth Behind KYRSP33DY’s Mythical Cobblemon Adventure!

    Secrets Revealed: The Truth Behind KYRSP33DY's Mythical Cobblemon Adventure!Video Information This video, titled ‘The Inside! – Mythical Cobblemon S2 Day 15 (Minecraft Pokemon Mod)’, was uploaded by KYRSP33DY on 2024-06-11 02:11:07. It has garnered 36025 views and 1448 likes. The duration of the video is 01:45:35 or 6335 seconds. MERCH at https://bfc.store Become a member of the channel: https://www.youtube.com/channel/UCIDlKYC7I6_76jCUBdX-6VQ/join My Twitter – https://twitter.com/KYR_SP33DY My Twitch – https://www.twitch.tv/kyr_sp33dy MERCH at https://bfc.store Check out FocusFuel: https://thefocusfuel.com/speedy Use Code “Speedy” for 10% Off! I am a co-founder of FocusFuel. Discord – https://discord.com/invite/mythicalnetwork Modpack -https://www.technicpack.net/modpack/pixelmon-513-pro.1072839 Installation Guide – Coming Soon #mythicalpartner Read More

  • “Unbelievable Win Using Luckyblocks in Bedwars!!!” #minecraft #hypixel

    "Unbelievable Win Using Luckyblocks in Bedwars!!!" #minecraft #hypixelVideo Information This video, titled ‘free win (luckyblocks bedwars) #minecraft #bedwars #hypixel’, was uploaded by Dimensional Breachers on 2024-03-15 05:26:32. It has garnered 464 views and 11 likes. The duration of the video is 00:00:31 or 31 seconds. Welcome to another Video on our group channel: Discord Server: https://discord.gg/QJ8RwZZsjj Links to Breachers: Char: YouTube: https://www.youtube.com/channel/UCOEy2PrmyH2JWVHsuVhcJbg Twitter: https://twitter.com/CharizardXKing Cryptic: YouTube: https://www.youtube.com/channel/UCuQxOJ__tn8JE8cj9g7go8g Pug: YouTube: https://www.youtube.com/channel/UCuAHUKt7SYUOWugIHEpo1DQ Twitch: https://www.twitch.tv/outerspacepugyt Twitter: https://twitter.com/outerspacepugyt Muzz: YouTube: https://www.youtube.com/channel/UC7qs0ZVm5zYNAWmiFKvMzhg Twitch: https://www.twitch.tv/muzuku Twitter: https://twitter.com/Muzuku21 Ignore: #shorts #Minecraft #DimensionalBreachers #Halo #Phas #Deadbydaylight #gaming Tags: lunar client, badlion client, forge, 1.7.10 forge, 1.8.9 forge, hack download, vape.gg, vape download, vape v4, vapev4,… Read More

  • Daz Man Goes INSANE Over Skibidi Pack in Minecraft Bedrock!

    Daz Man Goes INSANE Over Skibidi Pack in Minecraft Bedrock!Video Information This video, titled ‘Daz Man Reviews Skibidi Modern Textures Texture Pack In Minecraft Bedrock! Texture Pack Review’, was uploaded by Daz Man on 2024-04-11 17:00:19. It has garnered 616 views and 22 likes. The duration of the video is 00:35:34 or 2134 seconds. Throwback Thursday has officially hit MEME status with the Skibidi Modern Textures Texture Pack available in Minecraft Markplace, created by Heropixel Games! ⭐Join this channel as a MEMBER to get access to perks⭐: https://www.youtube.com/channel/UCMkZhW34c40PruhVE2XWoMA/join OTHER CHANNEL LINKS @DazManReacts – www.youtube.com/@DazManReacts Bringing the Skibidi Toilet meme into you Minecraft World with polished textures and custom Skibidi… Read More

  • 🔥EPIC Clan Base Build in Minecraft SMP Java + BE🔥

    🔥EPIC Clan Base Build in Minecraft SMP Java + BE🔥Video Information This video, titled ‘Making Clan Base In Minecraft SMP Java + BE #minecraftpesmpgameplayinhindi #publicsmpminecraft’, was uploaded by SFC Gaming World on 2024-01-14 08:20:00. It has garnered 89 views and 15 likes. The duration of the video is 00:47:14 or 2834 seconds. 🔴ABOUT THIS VIDEO SO Guys I M Playing In Golden Elytra Server And Making Our Clan Base If U Like And Enjoy This Stream Make Sure U Hit The Like Share And Subscribe Button And If U Wanna Play With Me The Ip Is Here Golden Elytra Server IP- Goldenelytra.com Zigbeast Bro Server Ip- PublicLoyal.aternos.me:40241 Zigbeast Bro… Read More

  • INSANE POKEMON NUZLOCKE LIVE! Choose names and join the fun 🚀

    INSANE POKEMON NUZLOCKE LIVE! Choose names and join the fun 🚀Video Information This video, titled ‘🔴PLAYING POKEMON NUZLOCKE LIVE!! (you can name pokemon, also im on a bad back up mic lol)’, was uploaded by Prof Mush on 2024-05-13 17:16:27. It has garnered 153 views and 9 likes. The duration of the video is 02:11:46 or 7906 seconds. hive is live chatgpt is taking over now… hive, hive cs, hive with viewers, hive party, minecraft, minecraft bedrock, minecraft the hive, hive bedrock, hive skywars, the hive, hive treasure wars, mcpe, the hive bedrock, treasure wars, hive arcade, Hive, Hive Minigames, Minecraft, PvP, Minecraft PvP, 1v1, Hive Custom Servers, Hive Quests,… Read More

  • savdude – Insane New Music Disc – OMG Reason 7 #minecraft

    savdude - Insane New Music Disc - OMG Reason 7 #minecraftVideo Information This video, titled ‘New Minecraft Music Disc – For a Reason 7? #minecraft#shorts#cricket’, was uploaded by savdude on 2024-05-05 14:54:48. It has garnered 390 views and 12 likes. The duration of the video is 00:00:56 or 56 seconds. Minecraft Holi Edition Mod FOLLOW ME : Instagram ►https://www.instagram.com/sav_dude_/ Discord ►https://discord.link/Savdude #Minecraft #But#savdude#op #holi #happy holi #holi festival #holi holiday Read More

  • Aurous

    AurousWelcome to Aurous! We listen to community suggestions and always have a twist or special thing going on. server.limified.com Read More

  • TheCrib SMP Java + Bedrock 1.20 Survival Community Events

    TheCrib Server TheCrib is a Survival, SMP, Factions, and Anarchy based server that focuses on quality of life features and values the player experience. The server supports both Java & Bedrock versions. Server IP: thecribmc.us.to Bedrock Port: 19132 Discord Server: discord.gg/thecribmc Wiki: wiki.thecrib.live Read More

  • 🌊 Castaway Cove | 🏳️‍🌈 LGBTQ+ Friendly Island Survival 🏝️ | 🍍Custom Fruit & Fishing 🍍 | 🦜 Jobs & Economy 🦜 | 🏝️ Furniture 🏝️|

    IP: castaway.smpmc.usArgh Matey, Welcome to Castaway Cove!! We’re a unique take on Skyblock/AcidIsland where you can carve out your own slice of paradise on a private island, cultivating a variety of exotic fruits such as coconuts, pineapples, and bananas. Watch your orchards flourish under the warm tropical sun, providing you with a bountiful harvest to enjoy and trade. But that’s not all – the crystal-clear waters around your island are teeming with vibrant aquatic life, just waiting for you to explore. Try your hand at fishing, and discover an array of new and exciting species. Whether you’re tending to your… Read More

  • Minecraft Memes – When Minecraft hits different

    Minecraft Memes - When Minecraft hits differentWhen you spend hours building a masterpiece in Minecraft and then accidentally delete it with one wrong click… yup, sometimes it really do be like that. Read More

  • Crafty Cheaters Beware: Minecraft Guess Part 1 Fun!

    Crafty Cheaters Beware: Minecraft Guess Part 1 Fun! In the world of Minecraft, we play a game of guess, With my brother by my side, we put our skills to the test. Guessing items and blocks, in this virtual land, Creating funny moments, with each move we planned. Don’t cheat, we say, as we laugh and we play, Bringing joy and excitement, in every single way. If you want to join us, just leave a comment below, We’ll welcome you with open arms, in this Minecraft show. So come along, let’s have some fun, In the world of Minecraft, under the sun. Guessing and laughing, in this… Read More

  • Minecraft Meme: Hotter than a Blaze Rod!

    Minecraft Meme: Hotter than a Blaze Rod! “Why did the creeper break up with his girlfriend? Because she couldn’t handle his explosive personality!” #minecraftmeme #relationshipproblems #boom Read More

  • Crafting Crypto Currency in Minecraft

    Crafting Crypto Currency in Minecraft Minecraft Encrypted_ | CREATING CRYPTO CURRENCY! Embark on an exciting Minecraft adventure with Nik and Isaac as they delve into the world of creating crypto currency in the modded questing survival game, Encrypted_. Join them as they explore new possibilities and challenges in this innovative gameplay experience. A New Generation of Stoneblock Stoneopolis introduces players to a fresh take on the classic Stoneblock gameplay. Dive into a world where creativity and strategy collide to create a unique gaming experience. Watch as Nik and Isaac navigate through this new generation of Stoneblock, uncovering hidden treasures and overcoming obstacles along the… Read More

Raspberry Pi Cluster Ep 4 – Minecraft, Pi-hole, Grafana + MORE!