This file contains hidden or 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
| #!/bin/bash | |
| set -euo pipefail | |
| ARGS=( "${@:1}" ) | |
| function deleteNamespace() | |
| { | |
| for CTX in "${ARGS[@]}"; do | |
| # Delete the namespace if it already exists. |
This file contains hidden or 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
| #!/bin/bash | |
| set -euo pipefail | |
| HUB=gcr.io/istio-testing | |
| TAG=latest | |
| echo "HUB=${HUB}" | |
| echo "TAG=${TAG}" | |
| # Delete Istio in this cluster |
This file contains hidden or 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
| #!/bin/bash | |
| set -euo pipefail | |
| HUB=gcr.io/istio-testing | |
| TAG=latest | |
| echo "HUB=${HUB}" | |
| echo "TAG=${TAG}" | |
| # Delete Istio in this cluster |
NewerOlder