diff options
author | Peter Leitzen <pleitzen@gitlab.com> | 2019-07-03 01:31:27 +0000 |
---|---|---|
committer | Dan Davison <ddavison@gitlab.com> | 2019-07-03 01:31:27 +0000 |
commit | 72810bfcc3182ce7e987d8b0eaad0eb1de3646d3 (patch) | |
tree | d724f36b88cf839723a7b99f92586fce3bb70a4e /qa/qa/resource | |
parent | 66913cb291487f3bc01d5dc9b4d0ca3e71132846 (diff) | |
download | gitlab-ce-72810bfcc3182ce7e987d8b0eaad0eb1de3646d3.tar.gz |
Wait for 'Uninstall' when installing Prometheus
Prometheus is uninstallable so waiting won't see 'Install' at all.
We'll see 'Uninstall' instead.
Diffstat (limited to 'qa/qa/resource')
-rw-r--r-- | qa/qa/resource/kubernetes_cluster.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/qa/resource/kubernetes_cluster.rb b/qa/qa/resource/kubernetes_cluster.rb index 27ab7b60211..1dd93dd5b88 100644 --- a/qa/qa/resource/kubernetes_cluster.rb +++ b/qa/qa/resource/kubernetes_cluster.rb @@ -47,7 +47,7 @@ module QA page.install!(:runner) if @install_runner page.await_installed(:ingress) if @install_ingress - page.await_installed(:prometheus) if @install_prometheus + page.await_uninstallable(:prometheus) if @install_prometheus page.await_installed(:runner) if @install_runner if @install_ingress |