65 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
package actionsgithubcom
 | 
						|
 | 
						|
import corev1 "k8s.io/api/core/v1"
 | 
						|
 | 
						|
const (
 | 
						|
	LabelKeyRunnerTemplateHash = "runner-template-hash"
 | 
						|
	LabelKeyPodTemplateHash    = "pod-template-hash"
 | 
						|
)
 | 
						|
 | 
						|
const (
 | 
						|
	EnvVarRunnerJITConfig      = "ACTIONS_RUNNER_INPUT_JITCONFIG"
 | 
						|
	EnvVarRunnerExtraUserAgent = "GITHUB_ACTIONS_RUNNER_EXTRA_USER_AGENT"
 | 
						|
)
 | 
						|
 | 
						|
// Environment variable names used to set proxy variables for containers
 | 
						|
const (
 | 
						|
	EnvVarHTTPProxy  = "http_proxy"
 | 
						|
	EnvVarHTTPSProxy = "https_proxy"
 | 
						|
	EnvVarNoProxy    = "no_proxy"
 | 
						|
)
 | 
						|
 | 
						|
// Labels applied to resources
 | 
						|
const (
 | 
						|
	// Kubernetes labels
 | 
						|
	LabelKeyKubernetesPartOf    = "app.kubernetes.io/part-of"
 | 
						|
	LabelKeyKubernetesComponent = "app.kubernetes.io/component"
 | 
						|
	LabelKeyKubernetesVersion   = "app.kubernetes.io/version"
 | 
						|
 | 
						|
	// Github labels
 | 
						|
	LabelKeyGitHubScaleSetName      = "actions.github.com/scale-set-name"
 | 
						|
	LabelKeyGitHubScaleSetNamespace = "actions.github.com/scale-set-namespace"
 | 
						|
	LabelKeyGitHubEnterprise        = "actions.github.com/enterprise"
 | 
						|
	LabelKeyGitHubOrganization      = "actions.github.com/organization"
 | 
						|
	LabelKeyGitHubRepository        = "actions.github.com/repository"
 | 
						|
)
 | 
						|
 | 
						|
// Finalizer used to protect resources from deletion while AutoscalingRunnerSet is running
 | 
						|
const AutoscalingRunnerSetCleanupFinalizerName = "actions.github.com/cleanup-protection"
 | 
						|
 | 
						|
const AnnotationKeyGitHubRunnerGroupName = "actions.github.com/runner-group-name"
 | 
						|
 | 
						|
// Labels applied to listener roles
 | 
						|
const (
 | 
						|
	labelKeyListenerName      = "auto-scaling-listener-name"
 | 
						|
	labelKeyListenerNamespace = "auto-scaling-listener-namespace"
 | 
						|
)
 | 
						|
 | 
						|
// Annotations applied for later cleanup of resources
 | 
						|
const (
 | 
						|
	AnnotationKeyManagerRoleBindingName           = "actions.github.com/cleanup-manager-role-binding"
 | 
						|
	AnnotationKeyManagerRoleName                  = "actions.github.com/cleanup-manager-role-name"
 | 
						|
	AnnotationKeyKubernetesModeRoleName           = "actions.github.com/cleanup-kubernetes-mode-role-name"
 | 
						|
	AnnotationKeyKubernetesModeRoleBindingName    = "actions.github.com/cleanup-kubernetes-mode-role-binding-name"
 | 
						|
	AnnotationKeyKubernetesModeServiceAccountName = "actions.github.com/cleanup-kubernetes-mode-service-account-name"
 | 
						|
	AnnotationKeyGitHubSecretName                 = "actions.github.com/cleanup-github-secret-name"
 | 
						|
	AnnotationKeyNoPermissionServiceAccountName   = "actions.github.com/cleanup-no-permission-service-account-name"
 | 
						|
)
 | 
						|
 | 
						|
// DefaultScaleSetListenerImagePullPolicy is the default pull policy applied
 | 
						|
// to the listener when ImagePullPolicy is not specified
 | 
						|
const DefaultScaleSetListenerImagePullPolicy = corev1.PullIfNotPresent
 | 
						|
 | 
						|
// ownerKey is field selector matching the owner name of a particular resource
 | 
						|
const resourceOwnerKey = ".metadata.controller"
 |