Posts
Install Helm
1. Website Releases
2.Installing sudo su - mkdir /opt/helm -p cd /opt/helm wget https://get.helm.sh/helm-v3.17.3-linux-amd64.tar.gz tar -zxvf helm-v3.17.3-linux-amd64.tar.gz ls -la mv /opt/helm/linux-amd64/helm /usr/local/bin/helm helm --version
Posts
Install Headlamp Kubernetes UI
1. Websites Headlamp
In cluster
GitHub
2. Installation Run these commands:
Install Headlamp in your cluster using Helm. Run the following: Run these commands:
sudo su - helm repo add headlamp https://kubernetes-sigs.github.io/headlamp/ helm install my-headlamp headlamp/headlamp --namespace kube-system
Posts
Install OpenLens Kubernetes IDE
1. Websites GitHub
2. Installation Run these commands
mkdir /opt/openlens cd /opt/openlens wget https://github.com/MuhammedKalkan/OpenLens/releases/download/v6.5.2-366/OpenLens-6.5.2-366.amd64.deb sudo apt install ./OpenLens-6.5.2-366.amd64.deb which openlens # Launching OpenLens openlens 3.Add a Kubernetes Cluster Option 1: Auto-Detect from ~/.kube/config OpenLens automatically loads any cluster contexts found in ~/.kube/config. You’ll see them listed in the left sidebar under “Catalog” or “Clusters”. Option 2: Manually Add a Cluster Click + Add Cluster Choose Browse or paste a kubeconfig Name the cluster (optional) Click Add Cluster ✅ You can connect to any k3s, minikube, AKS, EKS, GKE, etc.
Posts
Our Most Popular Dockerized Apps for 2025
These apps were chosen by my subscribers and visitors based on popularity
1. NextCloud By self-hosting Nextcloud, ONLYOFFICE in Proxmox, say goodbye to Microsoft Office 365 Video 1 The Video 2
Demo:
2. Homarr Install Homarr one of the most popular Dashboards in Proxmox Video
Demo
3. Dockge By installing Dockge in your Proxmox server say goodbye to Portainer for Docker management Video
Demo
4. Portainer Video
Demo
5. SmokePing Video
Posts
Beszel - The Simple Way to Self-Host lightweight Server Monitoring
What is Beszel Beszel is a simple, self-hosted server monitoring tool. It shows real-time CPU, memory, and disk usage across your machines. Designed for clarity — no clutter, just essential stats. Easily deploy it with Docker Compose in seconds. Perfect for homelabs and small teams who want simple server insights. Self-host App-Insights alternative for your Homelab Beszel And get more details: 1. Webpages https://beszel.dev/
https://beszel.dev/guide/getting-started
https://github.com/henrygd/beszel
2. Installation mkdir /opt/stacks/beszel cd /opt/stacks/beszel/ nano compose.
Posts
Datree Explained: Catch YAML Mistakes Before They Break Your Kubernetes Cluster
🧠 1. What is Datree? CLI tool for validating Kubernetes configurations Enforces best practices and custom policies Scans YAML manifests and Helm charts before deployment Works locally or in CI/CD pipelines Prevents misconfigurations and policy violations early 🚀 2. How You Can Benefit from Using Datree for Kubernetes Catches common misconfigurations (e.g. missing labels, no resource limits) Enforces team-wide standards and security policies Reduces risk of production issues Speeds up code reviews and CI/CD feedback loops Improves reliability and consistency across environments 📦 3.
Posts
No Server No NAS No Problem! Build Your Cloud Career With a Budget Homelab running Proxmox
In today’s video, I’ll show you how I built a homelab with a secondhand PC under $100. It has 64GB of RAM and runs Proxmox for virtualization. You don’t need a server or NAS to get started. I’ll also share Udemy courses that helped me learn. \ And how I use GitHub to build a project portfolio. If you’re aiming for a cloud career, this is a great place to start.
Posts
Our five Most Popular Docker Compose Projects for your Proxmox LXC Container
In this video we will demonstrate our 5 most popular Docker Containers, where we used and deployed them in our Proxmox LXC Container as Docker Compose Files
After that we will show you all our tested and working Docker Compose files for containers in our Docker Stacks Library Project in GitHub that you can use.
First Container : Nextcloud Video: https://youtu.be/f2j1e1ftpUI
Instructions: http://rino.kozow.com/devops/posts/install-nextcloud-in-proxmox/
Open in Browser: http://tiger.loseyourip.com:8088/
VS Code Server Videohttps://youtu.
Posts
Install Tofu in Proxmox
What is Open Tofu (the new kid on the block) Open Tofu is a fork of the Tera Form project forked at the last Opensource release the Hashycorp produced before they changed their licence now not Opensorce.
We will show you how to install this in Ubuntu Linux server which is our Kubernetes Master Node Server in our Proxmox server.
In the latest version of Open Tofu the terraform command has been removed making this a different project with compatability of the .
Posts
Kubernetes Basic Training
1. Connect to the Server Node ssh nico@192.168.1.52 sudo su - cd /opt/k3s # show Manifests ls -la 2. The Kubernetes API (kubectl) Kubernetes provides us with an API for creating and managing the Deployments, PODs , Services and Ingresses and much more If you don’t want to install this locally the run this in the cluster
2.1 Creating a Namespace nginx kubectl create namespace nginx 2.2 Listing the Clusters Nodes Run the command :