-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #262 from Telecominfraproject/WIFI-13357-be-able-t…
…o-set-ingress-class-name-for-all-the-component-helm-charts-as-the-annotation-is-no-longer-supported Wifi 13357 be able to set ingress class name for all the component helm charts as the annotation is no longer supported
- Loading branch information
Showing
2 changed files
with
9 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
#!/bin/bash | ||
[ -z "$NAMESPACE" ] && echo "No NAMESPACE set" && exit 1 | ||
helm -n openwifi-"$NAMESPACE" delete tip-openwifi | ||
sleep 30 | ||
kubectl delete ns openwifi-"$NAMESPACE" | ||
exit 0 | ||
if [[ "$1" == "full" ]] ; then | ||
sleep 30 | ||
kubectl delete ns openwifi-"$NAMESPACE" | ||
fi | ||
exit 0 |
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