Skip to content

Instantly share code, notes, and snippets.

View octoaea's full-sized avatar

Abdelkarim EL AMEL octoaea

  • OCTO Technology MAROC
View GitHub Profile
@octoaea
octoaea / k3s_helm_install.sh
Created January 10, 2023 12:47 — forked from icebob/k3s_helm_install.sh
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