Skip to content

Instantly share code, notes, and snippets.

View agosalvez's full-sized avatar
💭
Developing

Adrián Gosálvez agosalvez

💭
Developing
View GitHub Profile
@agosalvez
agosalvez / kubectl_ubuntu_wsl.sh
Created October 6, 2023 07:59 — forked from cmendible/kubectl_ubuntu_wsl.sh
Install kubectl on ubuntu (WSL) and use kubectl config from Windows
#!/bin/bash
# Receives your Windows username as only parameter.
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.16.0/bin/linux/amd64/kubectl
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
windowsUser=$1