gitlab-org--gitlab-foss/lib/gitlab/ci/build/prerequisite/base.rb
Tiger 89b0bc04b9 Create one Kubernetes namespace for a deployment
Instead of creating a Kubernetes namespace on every
cluster related to a project, only create one on the
cluster the project is about to be deployed to.
2019-03-20 12:04:46 +11:00

25 lines
413 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module Build
module Prerequisite
class Base
attr_reader :build
def initialize(build)
@build = build
end
def unmet?
raise NotImplementedError
end
def complete!
raise NotImplementedError
end
end
end
end
end
end