Skip to content
Snippets Groups Projects
Verified Commit 97552d46 authored by Rémy Coutable's avatar Rémy Coutable
Browse files

Ensure `Namespace`'s is namespaced in `Gitlab::Kubernetes::Helm#initialize`...

Ensure `Namespace`'s is namespaced in `Gitlab::Kubernetes::Helm#initialize` and fix a transient failing spec due to that

Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent 4820a195
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -18,7 +18,7 @@ module Gitlab
 
def initialize(kubeclient)
@kubeclient = kubeclient
@namespace = Namespace.new(NAMESPACE, kubeclient)
@namespace = Gitlab::Kubernetes::Namespace.new(NAMESPACE, kubeclient)
end
 
def install(command)
Loading
Loading
Loading
Loading
@@ -22,6 +22,8 @@ describe Clusters::Applications::ScheduleInstallationService do
let(:service) { described_class.new(project, nil, cluster: cluster, application_class: application_class) }
 
it 'creates a new application' do
allow(ClusterInstallAppWorker).to receive(:perform_async)
expect { service.execute }.to change { application_class.count }.by(1)
end
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment