Merge branch 'sh-fix-helm-api-spec' into 'master'

Fix namespace ambiguity with Kubernetes Pod definitions

Closes #41458

See merge request gitlab-org/gitlab-ce!16130
This commit is contained in:
Grzegorz Bizon 2017-12-25 06:58:59 +00:00
commit d6e16693dc
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ module Gitlab
private
def pod_resource(command)
Pod.new(command, @namespace.name, @kubeclient).generate
Gitlab::Kubernetes::Helm::Pod.new(command, @namespace.name, @kubeclient).generate
end
end
end