summaryrefslogtreecommitdiff
path: root/app/services/clusters/applications/install_service.rb
blob: 947d22022bca757a7265a92b299e6bf81159a87b (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
# frozen_string_literal: true

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

        begin
          app.make_installing!
          helm_api.install(install_command)

          ClusterWaitForAppInstallationWorker.perform_in(
            ClusterWaitForAppInstallationWorker::INTERVAL, app.name, app.id)
        rescue Kubeclient::HttpError => e
          Rails.logger.error("Kubernetes error: #{e.error_code} #{e.message}")
          app.make_errored!("Kubernetes error: #{e.error_code}")
        rescue StandardError => e
          Rails.logger.error "Can't start installation process: #{e.class.name} #{e.message}"
          app.make_errored!("Can't start installation process.")
        end
      end
    end
  end
end