diff options
author | Thong Kuah <tkuah@gitlab.com> | 2019-04-10 14:50:14 +1200 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2019-04-29 22:55:11 -0700 |
commit | 938e90f47288901790a96c50a8c0dfa2b7eab137 (patch) | |
tree | b7496ad378885c6aee32b199906386812cedf9d8 /app/workers | |
parent | 33a765c17a246e4a2376056b1c301707c78806d0 (diff) | |
download | gitlab-ce-938e90f47288901790a96c50a8c0dfa2b7eab137.tar.gz |
Services to uninstall cluster application
+ to monitor progress of uninstallation pod
Diffstat (limited to 'app/workers')
-rw-r--r-- | app/workers/all_queues.yml | 1 | ||||
-rw-r--r-- | app/workers/clusters/applications/wait_for_uninstall_app_worker.rb | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/app/workers/all_queues.yml b/app/workers/all_queues.yml index d01bbbf269e..0d14d313d21 100644 --- a/app/workers/all_queues.yml +++ b/app/workers/all_queues.yml @@ -32,6 +32,7 @@ - gcp_cluster:cluster_wait_for_ingress_ip_address - gcp_cluster:cluster_configure - gcp_cluster:cluster_project_configure +- gcp_cluster:clusters_applications_wait_for_uninstall_app - github_import_advance_stage - github_importer:github_import_import_diff_note 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 |