Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(travis): increase wait time for pods #74

Merged
merged 1 commit into from
Nov 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ci/upgrade/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ sleep 100

echo "Wait for cspc-operator to start"

kubectl wait --for=condition=available --timeout=300s deployment/cspc-operator -n openebs
kubectl wait --for=condition=available --timeout=550s deployment/cspc-operator -n openebs
shubham14bajpai marked this conversation as resolved.
Show resolved Hide resolved

echo "Create application with cStor volume on CSPC"

Expand All @@ -37,7 +37,7 @@ bdname=$(kubectl -n openebs get blockdevices -o jsonpath='{.items[*].metadata.na
sed "s|CSPCBD|$bdname|g" ./ci/upgrade/application.tmp.yaml | sed "s|NODENAME|$nodename|g" > ./ci/upgrade/application.yaml
kubectl apply -f ./ci/upgrade/application.yaml
sleep 10
kubectl wait --for=condition=available --timeout=300s deployment/percona
kubectl wait --for=condition=available --timeout=550s deployment/percona

echo "Upgrade control plane to latest version"

Expand Down