7 lines
157 B
Bash
Executable file
7 lines
157 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source /hooks/common/functions.sh
|
|
|
|
for refmap in $(kubectl get refmap -ojson | jq -r '.items[] | .metadata.name'); do
|
|
delete "${refmap}"
|
|
done
|