Skip to content

Instantly share code, notes, and snippets.

View vijay2213's full-sized avatar
:octocat:
Available

Vijay Surisetti vijay2213

:octocat:
Available
  • Singapore
  • 16:22 (UTC +08:00)
View GitHub Profile
@vijay2213
vijay2213 / k3s_helm_install.sh
Created March 14, 2022 03:19 — 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