Skip to content

Instantly share code, notes, and snippets.

@cmendible
Created November 16, 2019 22:02
Show Gist options
  • Save cmendible/ee6119ee202becd743888435e830b987 to your computer and use it in GitHub Desktop.
Save cmendible/ee6119ee202becd743888435e830b987 to your computer and use it in GitHub Desktop.
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
mkdir -p ~/.kube
ln -sf "/mnt/c/users/$windowsUser/.kube/config" ~/.kube/config
kubectl version
@irem6142
Copy link

irem6142 commented May 5, 2024

Thank you :)

@therealmitchconnors
Copy link

If you're using devcontainers, you typically mount the WSL ~/.kube folder into the devcontainer for consistent k8s access, as here. Unfortunately, if the config file is a symlink, this does not work, as docker cannot follow the symlink in the mount. This can be corrected if you symlink the entire ~/.kube folder in WSL, rather than just the config file... Do you see any drawbacks to symlinking the whole folder?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment