10 lines
192 B
Ruby
10 lines
192 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ClusterAgentQueue
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
queue_namespace :cluster_agent
|
|
feature_category :kubernetes_management
|
|
end
|
|
end
|