Wait the result of the controller deployment before running any test (#2638)
This commit is contained in:
parent
50461298f2
commit
764bcd5a1b
1 changed files with 8 additions and 0 deletions
|
@ -14,6 +14,8 @@
|
||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
|
|
||||||
export NAMESPACE=$1
|
export NAMESPACE=$1
|
||||||
|
@ -22,3 +24,9 @@ echo "deploying NGINX Ingress controller in namespace $NAMESPACE"
|
||||||
|
|
||||||
sed "s@\${NAMESPACE}@${NAMESPACE}@" $DIR/../manifests/ingress-controller/mandatory.yaml | kubectl apply --namespace=$NAMESPACE -f -
|
sed "s@\${NAMESPACE}@${NAMESPACE}@" $DIR/../manifests/ingress-controller/mandatory.yaml | kubectl apply --namespace=$NAMESPACE -f -
|
||||||
cat $DIR/../manifests/ingress-controller/service-nodeport.yaml | kubectl apply --namespace=$NAMESPACE -f -
|
cat $DIR/../manifests/ingress-controller/service-nodeport.yaml | kubectl apply --namespace=$NAMESPACE -f -
|
||||||
|
|
||||||
|
# wait for the deployment and fail if there is an error before starting the execution of any test
|
||||||
|
kubectl rollout status \
|
||||||
|
--request-timeout=3m \
|
||||||
|
--namespace $NAMESPACE \
|
||||||
|
deployment nginx-ingress-controller
|
||||||
|
|
Loading…
Reference in a new issue