summaryrefslogtreecommitdiff
path: root/app/workers/environments/canary_ingress/update_worker.rb
blob: 591c88cac962dce2241c394b58f0062a3168e1a4 (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 Environments
  module CanaryIngress
    class UpdateWorker
      include ApplicationWorker

      data_consistency :always

      sidekiq_options retry: false
      idempotent!
      worker_has_external_dependencies!
      feature_category :continuous_delivery
      tags :exclude_from_kubernetes

      def perform(environment_id, params)
        Environment.find_by_id(environment_id).try do |environment|
          Environments::CanaryIngress::UpdateService
            .new(environment.project, nil, params.with_indifferent_access)
            .execute(environment)
        end
      end
    end
  end
end