summaryrefslogtreecommitdiff
path: root/app/services/clusters/applications/install_service.rb
blob: 7fcccb5e78cc2fd30f90e24abfa8eee6eda1ad47 (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
module Clusters
  module Applications
    class InstallService < BaseHelmService
      def execute
        return unless app.scheduled?

        begin
          helm_api.install(app)

          if app.make_installing
            ClusterWaitForAppInstallationWorker.perform_in(
              ClusterWaitForAppInstallationWorker::INITIAL_INTERVAL, app.name, app.id)
          else
            app.make_errored!("Failed to update app record; #{app.errors}")
          end
        rescue KubeException => ke
          app.make_errored!("Kubernetes error: #{ke.message}")
        rescue StandardError
          app.make_errored!("Can't start installation process")
        end
      end
    end
  end
end