166 lines
5.3 KiB
Ruby
166 lines
5.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
# Kubernetes Internal API
|
|
module Internal
|
|
class Kubernetes < ::API::Base
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
before do
|
|
check_feature_enabled
|
|
authenticate_gitlab_kas_request!
|
|
end
|
|
|
|
helpers do
|
|
def authenticate_gitlab_kas_request!
|
|
render_api_error!('KAS JWT authentication invalid', 401) unless Gitlab::Kas.verify_api_request(headers)
|
|
end
|
|
|
|
def agent_token
|
|
@agent_token ||= cluster_agent_token_from_authorization_token
|
|
end
|
|
|
|
def agent
|
|
@agent ||= agent_token.agent
|
|
end
|
|
|
|
def repo_type
|
|
Gitlab::GlRepository::PROJECT
|
|
end
|
|
|
|
def gitaly_info(project)
|
|
shard = repo_type.repository_for(project).shard
|
|
{
|
|
address: Gitlab::GitalyClient.address(shard),
|
|
token: Gitlab::GitalyClient.token(shard),
|
|
features: Feature::Gitaly.server_feature_flags
|
|
}
|
|
end
|
|
|
|
def gitaly_repository(project)
|
|
{
|
|
storage_name: project.repository_storage,
|
|
relative_path: project.disk_path + '.git',
|
|
gl_repository: repo_type.identifier_for_container(project),
|
|
gl_project_path: repo_type.repository_for(project).full_path
|
|
}
|
|
end
|
|
|
|
def check_feature_enabled
|
|
not_found! unless Feature.enabled?(:kubernetes_agent_internal_api, type: :ops)
|
|
end
|
|
|
|
def check_agent_token
|
|
unauthorized! unless agent_token
|
|
|
|
::Clusters::AgentTokens::TrackUsageService.new(agent_token).execute
|
|
end
|
|
|
|
def agent_has_access_to_project?(project)
|
|
Guest.can?(:download_code, project) || agent.has_access_to?(project)
|
|
end
|
|
|
|
def increment_unique_events
|
|
events = params[:unique_counters]&.slice(:agent_users_using_ci_tunnel)
|
|
|
|
events&.each do |event, entity_ids|
|
|
increment_unique_values(event, entity_ids)
|
|
end
|
|
end
|
|
|
|
def increment_count_events
|
|
events = params[:counters]&.slice(:gitops_sync, :k8s_api_proxy_request)
|
|
|
|
Gitlab::UsageDataCounters::KubernetesAgentCounter.increment_event_counts(events)
|
|
end
|
|
end
|
|
|
|
namespace 'internal' do
|
|
namespace 'kubernetes' do
|
|
before do
|
|
check_agent_token
|
|
end
|
|
|
|
desc 'Gets agent info' do
|
|
detail 'Retrieves agent info for the given token'
|
|
end
|
|
route_setting :authentication, cluster_agent_token_allowed: true
|
|
get '/agent_info', feature_category: :kubernetes_management, urgency: :low do
|
|
project = agent.project
|
|
|
|
status 200
|
|
{
|
|
project_id: project.id,
|
|
agent_id: agent.id,
|
|
agent_name: agent.name,
|
|
gitaly_info: gitaly_info(project),
|
|
gitaly_repository: gitaly_repository(project),
|
|
default_branch: project.default_branch_or_main
|
|
}
|
|
end
|
|
|
|
desc 'Gets project info' do
|
|
detail 'Retrieves project info (if authorized)'
|
|
end
|
|
route_setting :authentication, cluster_agent_token_allowed: true
|
|
get '/project_info', feature_category: :kubernetes_management, urgency: :low do
|
|
project = find_project(params[:id])
|
|
|
|
not_found! unless agent_has_access_to_project?(project)
|
|
|
|
status 200
|
|
{
|
|
project_id: project.id,
|
|
gitaly_info: gitaly_info(project),
|
|
gitaly_repository: gitaly_repository(project),
|
|
default_branch: project.default_branch_or_main
|
|
}
|
|
end
|
|
end
|
|
|
|
namespace 'kubernetes/agent_configuration', urgency: :low do
|
|
desc 'POST agent configuration' do
|
|
detail 'Store configuration for an agent'
|
|
end
|
|
params do
|
|
requires :agent_id, type: Integer, desc: 'ID of the configured Agent'
|
|
requires :agent_config, type: JSON, desc: 'Configuration for the Agent'
|
|
end
|
|
post '/', feature_category: :kubernetes_management do
|
|
agent = ::Clusters::Agent.find(params[:agent_id])
|
|
|
|
::Clusters::Agents::RefreshAuthorizationService.new(agent, config: params[:agent_config]).execute
|
|
|
|
no_content!
|
|
end
|
|
end
|
|
|
|
namespace 'kubernetes/usage_metrics' do
|
|
desc 'POST usage metrics' do
|
|
detail 'Updates usage metrics for agent'
|
|
end
|
|
params do
|
|
optional :counters, type: Hash do
|
|
optional :gitops_sync, type: Integer, desc: 'The count to increment the gitops_sync metric by'
|
|
optional :k8s_api_proxy_request, type: Integer, desc: 'The count to increment the k8s_api_proxy_request metric by'
|
|
end
|
|
|
|
optional :unique_counters, type: Hash do
|
|
optional :agent_users_using_ci_tunnel, type: Array[Integer], desc: 'An array of user ids that have interacted with CI Tunnel'
|
|
end
|
|
end
|
|
post '/', feature_category: :kubernetes_management do
|
|
increment_count_events
|
|
increment_unique_events
|
|
|
|
no_content!
|
|
rescue ArgumentError => e
|
|
bad_request!(e.message)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
API::Internal::Kubernetes.prepend_mod_with('API::Internal::Kubernetes')
|