a5379c08e2
Signed-off-by: Ryan Richard <richardry@vmware.com>
12 lines
254 B
Bash
Executable File
12 lines
254 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -euo pipefail
|
|
|
|
ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
|
|
cd "${ROOT}"
|
|
|
|
kind delete cluster --name pinniped
|