Skip to content

Instantly share code, notes, and snippets.

View besteban1989's full-sized avatar

Byron Esteban besteban1989

View GitHub Profile
@besteban1989
besteban1989 / azure-cli-snippets.sh
Last active October 11, 2022 17:36
Azure CLI Snippets
# List all resources on the current subscription
az resource list --query "[].[name, id, location, type, resourceGroup]" -o tsv > resources.txt
# Purge container registry and keep the last 3 tags for each repo
# Remove the --dry-run to execute the deletion
PURGE_CMD="acr purge \
--filter '.*:.*' \
--ago 0d --untagged --keep 3 --dry-run"
az acr run \
@besteban1989
besteban1989 / Kubernetes snippets.sh
Last active March 6, 2025 18:45
Kubernetes snippets #swissknife #network #connectivity
# Run busybox
kubectl run -i --tty busybox --image=busybox --restart=Never -- sh
# Run SSH-client
kubectl run -i --tty ssh-client --image=kroniak/ssh-client --restart=Never -- sh
# Run busybox with curl included
kubectl run -i --tty busybox --image=yauritux/busybox-curl --restart=Never -- sh
# Test network connectivy by running netcat