Skip to content

Instantly share code, notes, and snippets.

View CrashenX's full-sized avatar
🍪
Ohm nom nom

Jesse J. Cook CrashenX

🍪
Ohm nom nom
  • Greater St. Louis
View GitHub Profile
@CrashenX
CrashenX / kube_gitlab.md
Last active October 14, 2021 17:23 — forked from kacieh80/kube_gitlab.md
Install Kubernetes on Digital Ocean and run Gitlab

Installing Gitlab with DigitalOcean and Kubernetes

Prerequisites

Create a Kubernetes Cluster

  • In your DigitalOcean account create an empty project and go to Manage > Kubernetes
@CrashenX
CrashenX / contributor-list.sh
Last active May 1, 2019 23:42
Get Git Contributor List
ORG='libvirt' REPO='libvirt'; for i in {1..5}; do curl "https://api.github.com/repos/$ORG/$REPO/contributors?per_page=100&page=$i" 2>/dev/null | jq -r '.[] | "\(.contributions)\t\(.html_url)"'; done