Welcome to mirror list, hosted at ThFree Co, Russian Federation.

deployment.rb « seed « pipeline « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c90f03cb1de5301e6f516c0382a4b9f2d355bc8 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# frozen_string_literal: true

module Gitlab
  module Ci
    module Pipeline
      module Seed
        class Deployment < Seed::Base
          attr_reader :job, :environment

          def initialize(job)
            @job = job
            @environment = Seed::Environment.new(@job)
          end

          def to_resource
            return job.deployment if job.deployment
            return unless job.starts_environment?

            deployment = ::Deployment.new(attributes)
            deployment.environment = environment.to_resource

            # If there is a validation error on environment creation, such as
            # the name contains invalid character, the job will fall back to a
            # non-environment job.
            return unless deployment.valid? && deployment.environment.persisted?

            deployment.cluster_id =
              deployment.environment.deployment_platform&.cluster_id

            # Allocate IID for deployments.
            # This operation must be outside of transactions of pipeline creations.
            deployment.ensure_project_iid!

            deployment
          end

          private

          def attributes
            {
              project: job.project,
              user: job.user,
              ref: job.ref,
              tag: job.tag,
              sha: job.sha,
              on_stop: job.on_stop
            }
          end
        end
      end
    end
  end
end