6b9157d5dc
We are deprecating this service in favor of instance wide clusters. Therefore we removed some code that is not anymore needed for a readonly cluster and also we added some flags to allow for this deprecation. These flags are to be removed in the next release when we finally completelly remove KubernetesService.
20 lines
624 B
Ruby
20 lines
624 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe ReactiveCachingWorker do
|
|
let(:service) { project.deployment_platform }
|
|
|
|
describe '#perform' do
|
|
context 'when user configured kubernetes from CI/CD > Clusters' do
|
|
let!(:cluster) { create(:cluster, :project, :provided_by_gcp) }
|
|
let(:project) { cluster.project }
|
|
|
|
it 'calls #exclusively_update_reactive_cache!' do
|
|
expect_any_instance_of(Clusters::Platforms::Kubernetes).to receive(:exclusively_update_reactive_cache!)
|
|
|
|
described_class.new.perform("Clusters::Platforms::Kubernetes", service.id)
|
|
end
|
|
end
|
|
end
|
|
end
|