Skip to content

Instantly share code, notes, and snippets.

View meaksh's full-sized avatar
🏠
Working from home

Pablo Suárez Hernández meaksh

🏠
Working from home
View GitHub Profile
@icebob
icebob / k3s_helm_install.sh
Last active June 10, 2024 00:43
K3S + Helm installing
# Install K3S
curl -sfL https://get.k3s.io | sh -
# Copy k3s config
mkdir $HOME/.kube
sudo cp /etc/rancher/k3s/k3s.yaml $HOME/.kube/config
sudo chmod 644 $HOME/.kube/config
# Check K3S
kubectl get pods -n kube-system