summaryrefslogtreecommitdiff
path: root/app/services/clusters/applications/check_ingress_ip_address_service.rb
blob: 0ec06e776a7b9f32e149b61f31f0d4f814dc7434 (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
33
34
35
36
37
38
# frozen_string_literal: true

module Clusters
  module Applications
    class CheckIngressIpAddressService < BaseHelmService
      include Gitlab::Utils::StrongMemoize

      Error = Class.new(StandardError)

      LEASE_TIMEOUT = 15.seconds.to_i

      def execute
        return if app.external_ip
        return unless try_obtain_lease

        app.update!(external_ip: ingress_ip) if ingress_ip
      end

      private

      def try_obtain_lease
        Gitlab::ExclusiveLease
          .new("check_ingress_ip_address_service:#{app.id}", timeout: LEASE_TIMEOUT)
          .try_obtain
      end

      def ingress_ip
        service.status.loadBalancer.ingress&.first&.ip
      end

      def service
        strong_memoize(:ingress_service) do
          app.ingress_service
        end
      end
    end
  end
end