Skip to content

Instantly share code, notes, and snippets.

View ajaypraj's full-sized avatar

Ajay Prajapati ajaypraj

View GitHub Profile
@ajaypraj
ajaypraj / install-kubernetes-on-buster.sh
Created May 3, 2024 03:36 — forked from BeerOnBeard/install-kubernetes-on-buster.sh
Set up a single-node Kubernetes system on Debian 10 (Bustomer). Use Flannel as the network fabric. Install the Kubernetes dashboard.
#!/bin/bash
set -e;
# Set up a single-node Kubernetes system on Debian 10 (Buster).
# Use Flannel as the network fabric. Install the Kubernetes
# dashboard.
# disable swap
swapoff -a;