36a01a88ce
Kubernetes deployments on new clusters will now have a separate namespace per project environment, instead of sharing a single namespace for the project. Behaviour of existing clusters is unchanged. All new functionality is controlled by the :kubernetes_namespace_per_environment feature flag, which is safe to enable/disable at any time.
58 lines
1.6 KiB
Ruby
58 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Kubernetes
|
|
class DefaultNamespace
|
|
attr_reader :cluster, :project
|
|
|
|
delegate :platform_kubernetes, to: :cluster
|
|
|
|
##
|
|
# Ideally we would just use an environment record here instead of
|
|
# passing a project and name/slug separately, but we need to be able
|
|
# to look up namespaces before the environment has been persisted.
|
|
def initialize(cluster, project:)
|
|
@cluster = cluster
|
|
@project = project
|
|
end
|
|
|
|
def from_environment_name(name)
|
|
from_environment_slug(generate_slug(name))
|
|
end
|
|
|
|
def from_environment_slug(slug)
|
|
default_platform_namespace(slug) || default_project_namespace(slug)
|
|
end
|
|
|
|
private
|
|
|
|
def default_platform_namespace(slug)
|
|
return unless platform_kubernetes&.namespace.present?
|
|
|
|
if cluster.managed? && cluster.namespace_per_environment?
|
|
"#{platform_kubernetes.namespace}-#{slug}"
|
|
else
|
|
platform_kubernetes.namespace
|
|
end
|
|
end
|
|
|
|
def default_project_namespace(slug)
|
|
namespace_slug = "#{project.path}-#{project.id}".downcase
|
|
|
|
if cluster.namespace_per_environment?
|
|
namespace_slug += "-#{slug}"
|
|
end
|
|
|
|
Gitlab::NamespaceSanitizer.sanitize(namespace_slug)
|
|
end
|
|
|
|
##
|
|
# Environment slug can be predicted given an environment
|
|
# name, so even if the environment isn't persisted yet we
|
|
# still know what to look for.
|
|
def generate_slug(name)
|
|
Gitlab::Slug::Environment.new(name).generate
|
|
end
|
|
end
|
|
end
|
|
end
|