Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Commit

Permalink
Update e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonywendt committed Jul 25, 2023
1 parent 4e7a070 commit 6227f1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/e2e_basic_smoke_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ func TestAllServicesRunning(t *testing.T) { //nolint:funlen
require.NoError(t, err, output)

// Wait for the GitLab Runner Deployment to exist.
output, err = platform.RunSSHCommandAsSudo(`timeout 1200 bash -c "while ! kubectl get deployment gitlab-runner-gitlab-runner -n gitlab-runner; do sleep 5; done"`)
output, err = platform.RunSSHCommandAsSudo(`timeout 1200 bash -c "while ! kubectl get deployment gitlab-runner -n gitlab-runner; do sleep 5; done"`)
require.NoError(t, err, output)

// Wait for the GitLab Runner Deployment to report that it is ready
output, err = platform.RunSSHCommandAsSudo(`kubectl rollout status deployment/gitlab-runner-gitlab-runner -n gitlab-runner --watch --timeout=1200s`)
output, err = platform.RunSSHCommandAsSudo(`kubectl rollout status deployment/gitlab-runner -n gitlab-runner --watch --timeout=1200s`)
require.NoError(t, err, output)

})
Expand Down

0 comments on commit 6227f1c

Please sign in to comment.