Showing 31 of 31 total issues
Method collector_thread
has a Cognitive Complexity of 34 (exceeds 11 allowed). Consider refactoring. Open
def collector_thread retry_connection = true while running? begin
- Read upRead up
- Create a ticketCreate a ticket
Cyclomatic complexity for collector_thread is too high. [17/11] Open
def collector_thread retry_connection = true while running? begin
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
Cyclomatic complexity for parse_image_name is too high. [13/11] Open
def parse_image_name(image, image_ref) # parsing using same logic as in docker # https://github.com/docker/docker/blob/348f6529b71502b561aa493e250fd5be248da0d5/reference/reference.go#L174 docker_pullable_re = %r{ \A
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
Similar blocks of code found in 2 locations. Consider refactoring. Open
{ :component => "text-field", :id => "endpoints.prometheus.hostname", :name => "endpoints.prometheus.hostname", :label => _("Hostname (or IPv4 or IPv6 address)"),
- Read upRead up
- Create a ticketCreate a ticket
Similar blocks of code found in 2 locations. Consider refactoring. Open
{ :component => "text-field", :id => "endpoints.kubevirt.hostname", :name => "endpoints.kubevirt.hostname", :label => _("Hostname (or IPv4 or IPv6 address)"),
- Read upRead up
- Create a ticketCreate a ticket
Method parse_image_name
has a Cognitive Complexity of 14 (exceeds 11 allowed). Consider refactoring. Open
def parse_image_name(image, image_ref) # parsing using same logic as in docker # https://github.com/docker/docker/blob/348f6529b71502b561aa493e250fd5be248da0d5/reference/reference.go#L174 docker_pullable_re = %r{ \A
- Read upRead up
- Create a ticketCreate a ticket
Similar blocks of code found in 2 locations. Consider refactoring. Open
{ :component => "select", :id => "endpoints.default.security_protocol", :name => "endpoints.default.security_protocol", :label => _("Security Protocol"),
- Read upRead up
- Create a ticketCreate a ticket
Similar blocks of code found in 2 locations. Consider refactoring. Open
{ :component => "select", :id => "endpoints.kubevirt.security_protocol", :name => "endpoints.kubevirt.security_protocol", :label => _("Security Protocol"),
- Read upRead up
- Create a ticketCreate a ticket
Method parse_pod
has a Cognitive Complexity of 13 (exceeds 11 allowed). Consider refactoring. Open
def parse_pod(pod) # pod in kubernetes is container group in manageiq new_result = parse_base_item(pod) new_result.merge!(
- Read upRead up
- Create a ticketCreate a ticket
Similar blocks of code found in 3 locations. Consider refactoring. Open
def lazy_find_persistent_volume_claim(hash) return nil if hash.nil? search = {:container_project => lazy_find_project(:name => hash[:namespace]), :name => hash[:name]} persister.persistent_volume_claims.lazy_find(search, :ref => :by_container_project_and_name)
- Read upRead up
- Create a ticketCreate a ticket
Similar blocks of code found in 3 locations. Consider refactoring. Open
def lazy_find_replicator(hash) return nil if hash.nil? search = {:container_project => lazy_find_project(:name => hash[:namespace]), :name => hash[:name]} persister.container_replicators.lazy_find(search, :ref => :by_container_project_and_name)
- Read upRead up
- Create a ticketCreate a ticket
Similar blocks of code found in 3 locations. Consider refactoring. Open
def lazy_find_container_group(hash) return nil if hash.nil? search = {:container_project => lazy_find_project(:name => hash[:namespace]), :name => hash[:name]} persister.container_groups.lazy_find(search, :ref => :by_container_project_and_name)
- Read upRead up
- Create a ticketCreate a ticket
Similar blocks of code found in 3 locations. Consider refactoring. Open
{ :component => "textarea", :id => "endpoints.kubevirt.certificate_authority", :name => "endpoints.kubevirt.certificate_authority", :label => _("Trusted CA Certificates"),
- Read upRead up
- Create a ticketCreate a ticket
Similar blocks of code found in 3 locations. Consider refactoring. Open
{ :component => "textarea", :id => "endpoints.prometheus.certificate_authority", :name => "endpoints.prometheus.certificate_authority", :label => _("Trusted CA Certificates"),
- Read upRead up
- Create a ticketCreate a ticket
Similar blocks of code found in 3 locations. Consider refactoring. Open
{ :component => "textarea", :id => "endpoints.default.certificate_authority", :name => "endpoints.default.certificate_authority", :label => _("Trusted CA Certificates"),
- Read upRead up
- Create a ticketCreate a ticket
Use filter_map
instead. Open
@services.map { |svc| name_and_namespace(svc) }.compact
- Create a ticketCreate a ticket
- Exclude checks
Use filter_map
instead. Open
return inspector_sa.try(:imagePullSecrets).to_a.collect { |sec| sec.try(:name) }.compact.uniq
- Create a ticketCreate a ticket
- Exclude checks
Unnecessary symbol conversion; use :"openshift.io/build.name"
instead. Open
:name => pod.metadata.try(:annotations).try("openshift.io/build.name".to_sym)
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
Avoid immutable Array literals in loops. It is better to extract it into a local variable or a constant. Open
next if %w[default kubevirt].include?(endpoint['role'])
- Create a ticketCreate a ticket
- Exclude checks
metadata['rubygems_mfa_required']
must be set to 'true'
. Open
Gem::Specification.new do |spec| spec.name = "manageiq-providers-kubernetes" spec.version = ManageIQ::Providers::Kubernetes::VERSION spec.authors = ["ManageIQ Authors"]
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks