Deploy Kubernetes on Proxmox

Deploy Kubernetes on Proxmox

The Ultimate Step-by-Step Guide

GitHub - automation-avenue/k8s-on-proxmox: Install and configure kubernetes cluster on Proxmox VE hypervisor
Install and configure kubernetes cluster on Proxmox VE hypervisor - automation-avenue/k8s-on-proxmox

Now let's create 3 Virtual Machines based on that information.
Note that Master Node might need bit more resources than Worker Nodes

qm create 191 \
  --name k8s-master \
  --agent 1 \
  --balloon 0 \
  --cores 4 \
  --sockets 1 \
  --cpu host \
  --memory 4096 \
  --numa 0 \
  --scsihw virtio-scsi-single \
  --net0 virtio,bridge=vmbr0,firewall=1 \
  --ide2 local:iso/ubuntu-26.04-live-server-amd64.iso,media=cdrom \
  --boot "order=scsi0;ide2;net0" \
  --scsi0 transcend:50,discard=on,iothread=1,ssd=1

qm create 192 \
  --name k8s-worker1 \
  --agent 1 \
  --balloon 0 \
  --cores 2 \
  --sockets 1 \
  --cpu host \
  --memory 2048 \
  --numa 0 \
  --scsihw virtio-scsi-single \
  --net0 virtio,bridge=vmbr0,firewall=1 \
  --ide2 local:iso/ubuntu-26.04-live-server-amd64.iso,media=cdrom \
  --boot "order=scsi0;ide2;net0" \
  --scsi0 transcend:50,discard=on,iothread=1,ssd=1

qm create 193 \
  --name k8s-worker2 \
  --agent 1 \
  --balloon 0 \
  --cores 2 \
  --sockets 1 \
  --cpu host \
  --memory 2048 \
  --numa 0 \
  --scsihw virtio-scsi-single \
  --net0 virtio,bridge=vmbr0,firewall=1 \
  --ide2 local:iso/ubuntu-26.04-live-server-amd64.iso,media=cdrom \
  --boot "order=scsi0;ide2;net0" \
  --scsi0 transcend:50,discard=on,iothread=1,ssd=1

Note that this is true for my setup with Transcend SSD used as external storage, for you - if you run default Proxmox setup
the qm code might look more like that:

qm create 191 \
  --name k8s-master \
  --agent 1 \
  --balloon 0 \
  --cores 4 \
  --sockets 1 \
  --cpu host \
  --memory 4096 \
  --numa 0 \
  --scsihw virtio-scsi-single \
  --net0 virtio,bridge=vmbr0,firewall=1 \
  --ide2 local:iso/ubuntu-26.04-live-server-amd64.iso,media=cdrom \
  --boot "order=scsi0;ide2;net0" \
  --scsi0 local-lvm:50,discard=on,iothread=1,ssd=1

but you simply have to build it based on the output of your conf file, or simply just go through the manual process of VM creation - whichever you find easier.

Read more

יצירה של "רקע" למסך מכל סרטון

ניתן להוריד סירטון מיו-טיוב ולהריץ פקודה שתריץ את הסרטון כ"רקע לשולחן העבודה" 1. יש להתקין את תוכנת vlc 2. נכנסים עם טרמינל לתוך הספריה ששם הורד הסרטון 3. מריצים את הפקודה הבאה: ללינוקס: vlc --video-wallpaper --loop matrix03.mp4 ( לדוגמא שם הקובץ כאן הוא matrix03.mp4 ) לחלונות: start

By nigi
LibreOffice התקנת עברית לתוכנת

LibreOffice התקנת עברית לתוכנת

כמומחה שמתעסק בפרטים הקטנים ביותר ודורש שלמות מהכלים שלו, אני אגיד לך את האמת: LibreOffice היא חבילה עצומה, אבל "מהקופסה" היא לא מוגדרת טוב לעברית. רוב האנשים פשוט מתקינים וסובלים מסמן שקופץ או מכיוון פסקה שגוי. כדי שהתוכנה תעבוד כמו "שעון שוויצרי" (אבל בעברית), אנחנו צריכים

By nigi