summaryrefslogtreecommitdiff
path: root/app/workers/clusters
diff options
context:
space:
mode:
authorThong Kuah <tkuah@gitlab.com>2019-04-10 14:50:14 +1200
committerStan Hu <stanhu@gmail.com>2019-04-29 22:55:11 -0700
commit938e90f47288901790a96c50a8c0dfa2b7eab137 (patch)
treeb7496ad378885c6aee32b199906386812cedf9d8 /app/workers/clusters
parent33a765c17a246e4a2376056b1c301707c78806d0 (diff)
downloadgitlab-ce-938e90f47288901790a96c50a8c0dfa2b7eab137.tar.gz
Services to uninstall cluster application
+ to monitor progress of uninstallation pod
Diffstat (limited to 'app/workers/clusters')
-rw-r--r--app/workers/clusters/applications/wait_for_uninstall_app_worker.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/workers/clusters/applications/wait_for_uninstall_app_worker.rb b/app/workers/clusters/applications/wait_for_uninstall_app_worker.rb
new file mode 100644
index 00000000000..163c99d3c3c
--- /dev/null
+++ b/app/workers/clusters/applications/wait_for_uninstall_app_worker.rb
@@ -0,0 +1,20 @@
+# frozen_string_literal: true
+
+module Clusters
+ module Applications
+ class WaitForUninstallAppWorker
+ include ApplicationWorker
+ include ClusterQueue
+ include ClusterApplications
+
+ INTERVAL = 10.seconds
+ TIMEOUT = 20.minutes
+
+ def perform(app_name, app_id)
+ find_application(app_name, app_id) do |app|
+ Clusters::Applications::CheckUninstallProgressService.new(app).execute
+ end
+ end
+ end
+ end
+end