mirror of
https://github.com/SpecterOps/Nemesis
synced 2026-06-08 12:36:42 +00:00
11 lines
247 B
Bash
Executable File
11 lines
247 B
Bash
Executable File
#/bin/bash
|
|
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
pushd "$SCRIPT_DIR/../" > /dev/null
|
|
|
|
kubectl delete deployment postgres
|
|
sleep 5
|
|
kubectl apply -f kubernetes/postgres/deployment-dev.yaml
|
|
|
|
popd > /dev/null
|