summaryrefslogtreecommitdiff
path: root/app/services/clusters/applications/check_uninstall_progress_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/clusters/applications/check_uninstall_progress_service.rb')
-rw-r--r--app/services/clusters/applications/check_uninstall_progress_service.rb62
1 files changed, 62 insertions, 0 deletions
diff --git a/app/services/clusters/applications/check_uninstall_progress_service.rb b/app/services/clusters/applications/check_uninstall_progress_service.rb
new file mode 100644
index 00000000000..2a2594a30c8
--- /dev/null
+++ b/app/services/clusters/applications/check_uninstall_progress_service.rb
@@ -0,0 +1,62 @@
+# frozen_string_literal: true
+
+module Clusters
+ module Applications
+ class CheckUninstallProgressService < BaseHelmService
+ def execute
+ return unless app.uninstalling?
+
+ case installation_phase
+ when Gitlab::Kubernetes::Pod::SUCCEEDED
+ on_success
+ when Gitlab::Kubernetes::Pod::FAILED
+ on_failed
+ else
+ check_timeout
+ end
+ rescue Kubeclient::HttpError => e
+ log_error(e)
+
+ app.make_errored!("Kubernetes error: #{e.error_code}")
+ end
+
+ private
+
+ def on_success
+ app.make_uninstalled!
+ ensure
+ remove_installation_pod
+ end
+
+ def on_failed
+ app.make_errored!("Operation failed. Check pod logs for #{pod_name} for more details.")
+ end
+
+ def check_timeout
+ if timeouted?
+ begin
+ app.make_errored!("Operation timed out. Check pod logs for #{pod_name} for more details.")
+ end
+ else
+ WaitForUninstallAppWorker.perform_in(WaitForUninstallAppWorker::INTERVAL, app.name, app.id)
+ end
+ end
+
+ def pod_name
+ app.uninstall_command.pod_name
+ end
+
+ def timeouted?
+ Time.now.utc - app.updated_at.to_time.utc > WaitForUninstallAppWorker::TIMEOUT
+ end
+
+ def remove_installation_pod
+ helm_api.delete_pod!(pod_name)
+ end
+
+ def installation_phase
+ helm_api.status(pod_name)
+ end
+ end
+ end
+end