Skip to content

Fix Clusters::Instance invocation scope

Krasimir Angelov requested to merge fix-custer-instance-invocation-scope into master

What does this MR do?

In ee/app/models/concerns/ee/deployment_platform.rb we are referencing Clusters::Instance (defined in app/models/clusters/instance.rb) but there is also EE::Clusters::Instance and this fails in development with

NameError - uninitialized constant EE::Clusters::Instance:
  ee/app/models/concerns/ee/deployment_platform.rb:33:in `find_instance_cluster_platform_kubernetes'

This MR is changing it to ::Clusters::Instance in order to fix it.

Does this MR meet the acceptance criteria?

Conformity

Performance and testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team

Merge request reports