Documentation ¶
Index ¶
Constants ¶
View Source
const ( // TraceAgentIDAttr is tracing attribute that holds an agent id. TraceAgentIDAttr attribute.Key = "agent_id" JWTAgentk = "gitlab-agent" JWTKAS = "gitlab-kas" // AgentNameRegex // https://gitlab.com/gitlab-org/cluster-integration/gitlab-agent/-/blob/master/doc/identity_and_auth.md#agent-identity-and-name AgentNameRegex = `[a-z0-9](?:[-a-z0-9]*[a-z0-9])?` // AgentKeyPrefix is the prefix to use for labels and annotations owned by kas/agentk. // See https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/#syntax-and-character-set. // See https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#syntax-and-character-set. AgentKeyPrefix = "agent.gitlab.com" AgentIDKey = AgentKeyPrefix + "/id" ConfigProjectIDKey = AgentKeyPrefix + "/config_project_id" ProjectIDKey = AgentKeyPrefix + "/project_id" // ProjectKey is the annotation/label key that has a GitLab project full path as its value, e.g. `gitlab-org/gitlab`. ProjectKey = AgentKeyPrefix + "/project" CIPipelineIDKey = AgentKeyPrefix + "/ci_pipeline_id" CIJobIDKey = AgentKeyPrefix + "/ci_job_id" UsernameKey = AgentKeyPrefix + "/username" EnvironmentSlugKey = AgentKeyPrefix + "/environment_slug" EnvironmentTierKey = AgentKeyPrefix + "/environment_tier" // WebSocketMaxMessageSize is an arbitrary historical limit we used from the early days. WebSocketMaxMessageSize = 10 * 1024 * 1024 // GRPCMaxMessageSize is a limit that is under WebSocketMaxMessageSize. // Historically we didn't set gRPC limits: // - On the server the default value was 4MB. // - On the client the default value was 2GB. // We use 4MB explicitly to match the historical value. GRPCMaxMessageSize = 4 * 1024 * 1024 )
Variables ¶
This section is empty.
Functions ¶
func AgentToken2key ¶
func AgentToken2key(token AgentToken) []byte
Types ¶
type AgentInfo ¶
type AgentInfo struct { // ID is the agent's id in the database. ID int64 // ProjectID is the id of the configuration project of the agent. ProjectID int64 // Name is the agent's name. // Can contain only /a-z\d-/ Name string GitalyInfo *entity.GitalyInfo Repository *gitalypb.Repository // DefaultBranch is the name of the default branch in the agent's configuration repository. DefaultBranch string }
AgentInfo contains information about an agentk.
type ProjectInfo ¶
type ProjectInfo struct { ProjectID int64 GitalyInfo *entity.GitalyInfo Repository *gitalypb.Repository // DefaultBranch is the name of the default branch in a repository. DefaultBranch string }
Click to show internal directories.
Click to hide internal directories.