Welcome to mirror list, hosted at ThFree Co, Russian Federation.

upgrade_service.rb « applications « clusters « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c34391bc8ad266de8a82f35ee2ccc82643916b65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# frozen_string_literal: true

module Clusters
  module Applications
    class UpgradeService < BaseHelmService
      def execute
        return unless app.scheduled?

        begin
          app.make_updating!

          log_event(:begin_upgrade)
          # install_command works with upgrades too
          # as it basically does `helm upgrade --install`
          helm_api.update(install_command)

          log_event(:schedule_wait_for_upgrade)
          ClusterWaitForAppInstallationWorker.perform_in(
            ClusterWaitForAppInstallationWorker::INTERVAL, app.name, app.id)
        rescue Kubeclient::HttpError => e
          log_error(e)
          app.make_update_errored!("Kubernetes error: #{e.error_code}")
        rescue StandardError => e
          log_error(e)
          app.make_update_errored!("Can't start upgrade process.")
        end
      end
    end
  end
end