51 lines
1.7 KiB
Ruby
51 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Mutations
|
|
module Environments
|
|
module CanaryIngress
|
|
class Update < ::Mutations::BaseMutation
|
|
graphql_name 'EnvironmentsCanaryIngressUpdate'
|
|
description '**Deprecated** This endpoint is planned to be removed along with certificate-based clusters. [See this epic](https://gitlab.com/groups/gitlab-org/configure/-/epics/8) for more information.'
|
|
|
|
authorize :update_environment
|
|
|
|
argument :id,
|
|
::Types::GlobalIDType[::Environment],
|
|
required: true,
|
|
description: 'Global ID of the environment to update.'
|
|
|
|
argument :weight,
|
|
GraphQL::Types::Int,
|
|
required: true,
|
|
description: 'Weight of the Canary Ingress.'
|
|
|
|
REMOVAL_ERR_MSG = 'This endpoint was deactivated as part of the certificate-based' \
|
|
'kubernetes integration removal. See Epic:' \
|
|
'https://gitlab.com/groups/gitlab-org/configure/-/epics/8'
|
|
|
|
def resolve(id:, **kwargs)
|
|
return { errors: [REMOVAL_ERR_MSG] } unless certificate_based_clusters_enabled?
|
|
|
|
environment = authorized_find!(id: id)
|
|
|
|
result = ::Environments::CanaryIngress::UpdateService
|
|
.new(environment.project, current_user, kwargs)
|
|
.execute_async(environment)
|
|
|
|
{ errors: Array.wrap(result[:message]) }
|
|
end
|
|
|
|
def find_object(id:)
|
|
GitlabSchema.find_by_gid(id)
|
|
end
|
|
|
|
private
|
|
|
|
def certificate_based_clusters_enabled?
|
|
instance_cluster = ::Clusters::Instance.new
|
|
instance_cluster.certificate_based_clusters_enabled?
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|