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

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

        app.make_installing!

        install
      end

      private

      def install
        log_event(:begin_install)
        helm_api.install(install_command)

        log_event(:schedule_wait_for_installation)
        ClusterWaitForAppInstallationWorker.perform_in(
          ClusterWaitForAppInstallationWorker::INTERVAL, app.name, app.id)
      rescue Kubeclient::HttpError => e
        log_error(e)
        app.make_errored!("Kubernetes error: #{e.error_code}")
      rescue StandardError => e
        log_error(e)
        app.make_errored!('Failed to install.')
      end
    end
  end
end