Install cluster applications in parallel in auto devops QA

This commit is contained in:
Dylan Griffith 2018-07-24 16:05:32 +01:00
parent ad05cb523d
commit 039a8ebdd4
1 changed files with 3 additions and 2 deletions

View File

@ -44,10 +44,11 @@ module QA
page.await_installed(:helm)
page.install!(:ingress) if @install_ingress
page.await_installed(:ingress) if @install_ingress
page.install!(:prometheus) if @install_prometheus
page.await_installed(:prometheus) if @install_prometheus
page.install!(:runner) if @install_runner
page.await_installed(:ingress) if @install_ingress
page.await_installed(:prometheus) if @install_prometheus
page.await_installed(:runner) if @install_runner
end
end