blob: 68de7cca135e0cddb14e8dd78bf78eb781956103 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# frozen_string_literal: true
module ClusterAgentQueue
extend ActiveSupport::Concern
included do
queue_namespace :cluster_agent
feature_category :kubernetes_management
end
end
|