Skip to content

Instantly share code, notes, and snippets.

View iqlal's full-sized avatar
👨‍💻
Hacking NASA

Muhammad Istiqlal iqlal

👨‍💻
Hacking NASA
View GitHub Profile

Anyone Can install RKE2 and Rancher on a Node

  • RKE2 - Security focused Kubernetes
  • Rancher - Multi-Cluster Kubernetes Management
  • Longhorn - Unified storage layer

We will need a few tools for this guide. We will walk through how to install helm and kubectl.

A longer version of this install : Can a 12 y/o install the Rancher Stack?

@scyto
scyto / proxmox.md
Last active August 10, 2025 19:06
my proxmox cluster

ProxMox Cluster - Soup-to-Nutz

aka what i did to get from nothing to done.

note: these are designed to be primarily a re-install guide for myself (writing things down helps me memorize the knowledge), as such don't take any of this on blind faith - some areas are well tested and the docs are very robust, some items, less so). YMMV

Purpose of Proxmox cluster project

Required Outomces of cluster project

@clemenko
clemenko / harvester_clout_init.md
Last active May 21, 2025 07:12
A cloud_init example for Harvester and Rocky/Ubuntu
@esromneb
esromneb / gauss.m
Last active February 12, 2025 23:11
Gauss elimination and Gauss Jordan methods using MATLAB code
% Code from "Gauss elimination and Gauss Jordan methods using MATLAB"
% https://www.youtube.com/watch?v=kMApKEKisKE
a = [3 4 -2 2 2
4 9 -3 5 8
-2 -3 7 6 10
1 4 6 7 2];
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%