summaryrefslogtreecommitdiff
path: root/spec/services/clusters/applications/check_ingress_ip_address_service_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/services/clusters/applications/check_ingress_ip_address_service_spec.rb')
-rw-r--r--spec/services/clusters/applications/check_ingress_ip_address_service_spec.rb54
1 files changed, 27 insertions, 27 deletions
diff --git a/spec/services/clusters/applications/check_ingress_ip_address_service_spec.rb b/spec/services/clusters/applications/check_ingress_ip_address_service_spec.rb
index f3036fbcb0e..d7e842e86d0 100644
--- a/spec/services/clusters/applications/check_ingress_ip_address_service_spec.rb
+++ b/spec/services/clusters/applications/check_ingress_ip_address_service_spec.rb
@@ -1,34 +1,34 @@
-require 'spec_helper'
+# require 'spec_helper'
-describe Clusters::Applications::CheckIngressIpAddressService do
- include ExclusiveLeaseHelpers
+# describe Clusters::Applications::CheckIngressIpAddressService do
+# include ExclusiveLeaseHelpers
- let(:application) { create(:clusters_applications_ingress, :installed) }
- let(:service) { described_class.new(application) }
- let(:kubeclient) { double(::Kubeclient::Client, get_service: kube_service) }
- let(:ingress) { [{ ip: '111.222.111.222' }] }
- let(:lease_key) { "check_ingress_ip_address_service:#{application.id}" }
+# let(:application) { create(:clusters_applications_ingress, :installed) }
+# let(:service) { described_class.new(application) }
+# let(:kubeclient) { double(::Kubeclient::Client, get_service: kube_service) }
+# let(:ingress) { [{ ip: '111.222.111.222' }] }
+# let(:lease_key) { "check_ingress_ip_address_service:#{application.id}" }
- let(:kube_service) do
- ::Kubeclient::Resource.new(
- {
- status: {
- loadBalancer: {
- ingress: ingress
- }
- }
- }
- )
- end
+# let(:kube_service) do
+# ::Kubeclient::Resource.new(
+# {
+# status: {
+# loadBalancer: {
+# ingress: ingress
+# }
+# }
+# }
+# )
+# end
- subject { service.execute }
+# subject { service.execute }
- before do
- stub_exclusive_lease(lease_key, timeout: 15.seconds.to_i)
- allow(application.cluster).to receive(:kubeclient).and_return(kubeclient)
- end
+# before do
+# stub_exclusive_lease(lease_key, timeout: 15.seconds.to_i)
+# allow(application.cluster).to receive(:kubeclient).and_return(kubeclient)
+# end
- include_examples 'check ingress ip executions', :clusters_applications_ingress
+# include_examples 'check ingress ip executions', :clusters_applications_ingress
- include_examples 'check ingress ip executions', :clusters_applications_knative
-end
+# include_examples 'check ingress ip executions', :clusters_applications_knative
+# end