Advanced Search
Search Results
26 total results found
Current setup of Network
Installing docker and kublet on the systems
We need to install docker and kublet on all the systems that are going to be participating in the k8 Cluster
Setting up TP-Link VPN Router
Setting up pfsense
Setting up Retropi
Setting up RPI Juicebox
Setting up kubernetes on Rocky Linux
Install kubernetes cluster and nginx What is needed and how they will be used We will be using 2 control plan nodes, 4 worker/agent nodes and eventually 3 nodes for storage. One will also be used as a reverse proxy using Nginx. The DNS server that will be u...
Setting up a Home Assistant
Installing setting up the first k8 Controller
Once the first controller gets installed the others will fall right in line since the configuration comes from the first controller.
Installing the Nginx Load Balancer
First we need to install the nginx load balancer with a configuration that points to the two kubernetes Controllers.
Finally I have website!!!
I have been working with multiple different ways to get information about my youtube videos out to those who are interested. I have hosted at home, on different platforms and all over the place. It has been the one inconsistency that I have made for me to co...
Installing Dashy
Great landing page to access your self-hosted applications: https://github.com/Lissy93/dashy Docker compose file/stack for portainer: ---version: "3.8"services: dashy: container_name: Dashy # Pull latest image from DockerHub image: lissy93/dashy ...
Installing leantime project manager
Using portainer to install leantime: version: '3.3' # not sure if versionservices: #services section db: image: mysql:5.7 container_name: mysql_leantime volumes: - db_data:/var/lib/mysql restart: always environment: #Environment se...
Installing source control using gitea
Using portainer stacks to install Gitea source control: version: "3"networks: gitea: external: falseservices: server: image: gitea/gitea:1.15.10 container_name: gitea environment: - USER_UID=1000 - USER_GID=1000 restart: always n...
Installing uptime kuma
Setup/install uptime kuma using docker compose file: Docker compose file:version: '3.3'services: uptime-kuma: image: louislam/uptime-kuma container_name: uptime-kuma volumes: - ./uptime-kuma:/app/data ports: - 3001:3001 You tube video ...
Monitoring Portainer
Monitoring is a very important part of running any type of system git clone https://github.com/skybungee/monitor-stack.gitcd monitor-stackchmod +x setup_monitorstack.sh./setup_monitorstack.sh
Installing docker, cockpit and portainer
Install Docker curl -fsSL get.docker.com -o get-docker.sh sh get-docker.shusermod -aG docker rootsystemctl start dockersudo systemctl enable docker Install cockpit and cockpit docker plugin yum install cockpit cockpit-dockersystemctl enable --now cockpit.so...
Setting up kubernetes on Rocky Linux
Install kubernetes cluster and nginx What is needed and how they will be used We will be using 2 control plan nodes, 4 worker/agent nodes and eventually 3 nodes for storage. One will also be used as a reverse proxy using Nginx. The DNS server that will be u...
Setting up Raspberry Pi-hole
First get Raspberry Pi installed and logged in using ssh Once ssh'd into Raspberry pi run the following command: curl -sSL https://install.pi-hole.net | bash Website for pihole: https://pi-hole.net/ You can watch the video on you tube at:
Monitoring Proxmox system the easy way
We are going to be using docker and docker compose to complete this setup to work in monitoring your systems. Here is the compose file you will need: services: prometheus: image: prom/prometheus container_name: prometheus command: - '--config....