Skip to content

Instantly share code, notes, and snippets.

@schmiddim
schmiddim / foo.md
Last active November 3, 2021 18:42
SealedSecrets.md

Sealed Secrets

Installation

Setup k8

helm upgrade --install sealed-secrets --namespace kube-system --version 1.16.1 sealed-secrets/sealed-secrets

Binary for Encryption

@schmiddim
schmiddim / pulli.sh
Created March 4, 2025 16:50
View and approve all Pull requests
#!/bin/zsh
state=open
pullis=`gh search prs --review-requested @me --state $state --json number,title,state,url,author,repository| jq -rc '.[]| "gh pr diff \(.number) --repo=\(.repository.nameWithOwner);sleep 1; gh pr review \(.number) --repo=\(.repository.nameWithOwner) -a" '`
for pulli in $pullis;do
echo $pulli
eval $pulli
done