Skip to content

Instantly share code, notes, and snippets.

View mikejoh's full-sized avatar
🚀

Mikael Johansson mikejoh

🚀
View GitHub Profile
@keilmillerjr
keilmillerjr / Creating an AUR Package.md
Last active April 8, 2025 01:36
How to create and manage an AUR package. #AUR #ARCH #makepkg #PKGBUILD
@PhilipSchmid
PhilipSchmid / prometheus_alert_rules_for_certmanager.yaml
Last active April 9, 2025 08:22
4 helpful Prometheus alerting rules for Cert-Manager & its Certificate CRs
- name: custom_certmanager_monitoring
rules:
- alert: CertManagerAbsent
expr: absent(up{job="cert-manager"})
for: 1h
annotations:
message: "Cert Manager has dissapeared from Prometheus service discovery."
labels:
severity: critical
- alert: CertManagerACMEProxyReachability
@kalaspuffar
kalaspuffar / vitess-example.md
Last active January 30, 2025 16:38
Small example how to setup a vitess system.

Installing vitess

First of we need the registry and mysql server installed so we can keep track on which services are available, download new services and also run the actual database.

sudo apt install -y default-mysql-server default-mysql-client etcd curl

Before we start this POC we disable the default services as we will be setting up our own.

@KnVerey
KnVerey / resources.md
Last active May 10, 2023 22:32
Resources for talk "1M Lines of YAML" at KubeCon EU 2023

1M Lines of YAML: Wrangling Kubernetes Configuration for Hundreds of Teams

Katrina Verey, Shopify

Visit Sched for the talk description, feedback form and slides.

Resources

Declarative Application Management

@alexedwards
alexedwards / Makefile
Last active April 14, 2025 04:22
Boilerplate Makefile for Go projects
# Change these variables as necessary.
main_package_path = ./cmd/example
binary_name = example
# ==================================================================================== #
# HELPERS
# ==================================================================================== #
## help: print this help message
.PHONY: help