Skip to content

Instantly share code, notes, and snippets.

View avorima's full-sized avatar

Mario Valderrama avorima

View GitHub Profile
@avorima
avorima / main.go
Created January 21, 2022 20:18
Mutating webhook for kubectl annotations for any resource
package main
import (
"context"
"crypto/tls"
"encoding/json"
"flag"
"fmt"
"io"
"net/http"
#!/bin/bash
function log() {
if $verbose; then
echo "$1"
eval "$1" 2>&3
else
echo "$1" 1>&3
eval "$1" 2>&3 1>&3
fi