Skip to content

Instantly share code, notes, and snippets.

View harkamals's full-sized avatar

Harkamal harkamals

View GitHub Profile
@harkamals
harkamals / tasks.json
Last active January 21, 2019 12:39
VSCode Golang setup
{
"version": "2.0.0",
"tasks": [
{
"label": "go-run",
"type": "shell",
"command": "go run ${file}",
"options": {
"cwd": "${workspaceRoot}"
},
@harkamals
harkamals / minikube.md
Last active December 16, 2021 14:47
Minikube setup on MacOS High Sierra 10.13.4

Starting a minikube kubernetes cluster locally on macOS

$ brew update
$ brew install virtualbox
$ brew install kubernetes-cli
$ curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.27.0/minikube-darwin-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/

Enable bash auto-completion