moving all dots

This commit is contained in:
Barak Michener 2024-05-18 19:08:15 -07:00
parent 6fcf9ba919
commit d9b6fdfc1b
349 changed files with 34598 additions and 34727 deletions

10
dot_bash_k8s_aliases Normal file
View file

@ -0,0 +1,10 @@
#!/bin/bash
k8s-configmap-from-dir () {
local name=$1
shift
local dir=$1
shift
if
kubectl create configmap "$1" --from-file="$2" -o yaml --dry-run "$@"
}