mirror of
https://github.com/sameersbn/docker-gitlab.git
synced 2026-01-18 13:58:25 +00:00
9 lines
125 B
Bash
Executable File
9 lines
125 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Assuming you have a kubernetes cluser and kubectl installed
|
|
#
|
|
for i in *.yml
|
|
do
|
|
kubectl delete -f $i
|
|
done
|