-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix the kind set up - Add make target to teardown kind - fix the readme for updated paths and sameple request
- Loading branch information
1 parent
d063e89
commit f25b8ea
Showing
5 changed files
with
42 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
set -oe errexit | ||
|
||
if ! command -v kind &> /dev/null | ||
then | ||
echo "kind could not be found" | ||
exit | ||
fi | ||
|
||
if ! command -v helm &> /dev/null | ||
then | ||
echo "helm could not be found" | ||
exit | ||
fi | ||
|
||
if ! command -v kubectl &> /dev/null | ||
then | ||
echo "kubectl could not be found" | ||
exit | ||
fi | ||
|
||
# desired cluster name; default is "kind" | ||
echo "Deleting kind cluster -- \"kessel-relations-cluster\"" | ||
|
||
kind delete cluster --name kessel-relations-cluster |