Skip to content

Instantly share code, notes, and snippets.

@Haeniken
Last active March 5, 2023 03:33
Show Gist options
  • Save Haeniken/73bc6fd84aed402a63e63d2de31da8b3 to your computer and use it in GitHub Desktop.
Save Haeniken/73bc6fd84aed402a63e63d2de31da8b3 to your computer and use it in GitHub Desktop.
Fast tulz install
# ! Mostly Debian 11
# DOCKER
curl -fsSL https://get.docker.com -o get-docker.sh | bash
# HELM
# https://helm.sh/docs/intro/install/
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
# or "curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 && chmod 700 get_helm.sh && bash get_helm.sh"
# KUBECTL CLIENT
# https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment