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 869fc1e commit 1c30067
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 @@ -28,11 +28,11 @@ func TestAllServicesRunning(t *testing.T) { //nolint:funlen
require.NoError(t, err, output)

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

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

// Ensure that the services do not accept discontinued TLS versions. If they reject TLSv1.1 it is assumed that they also reject anything below TLSv1.1.
Expand Down

0 comments on commit 1c30067

Please sign in to comment.