-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.go
96 lines (87 loc) · 3.58 KB
/
constants.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package utils
const (
PipelineNamespace = "cattle-pipeline"
PipelineNamespaceSuffix = "-pipeline"
JenkinsName = "jenkins"
PipelineName = "pipeline"
PipelineSecretName = "pipeline-secret"
PipelineSecretUserKey = "admin-user"
PipelineSecretTokenKey = "admin-token"
PipelineSecretRegistryTokenKey = "registry-token"
PipelineSecretDefaultUser = "admin"
PipelineSecretDefaultToken = "admin123"
RegistryName = "docker-registry"
RegistryProxyName = "registry-proxy"
RegistryCrt = "client.cert"
RegistryKey = "client.key"
RegistryCACrt = "ca.crt"
RegistryCAKey = "ca.key"
RegistryCACrtSecretName = "registry-ca-crt"
RegistryCrtSecretName = "registry-crt"
RegistryCrtVolumeName = "crt"
RegistryAuthVolumeName = "auth"
RegistryAuthPath = "/opt/auth/"
RegistryCrtPath = "/opt/crt/"
RegistryMappingPath = "/opt/mapping/"
RegistryPortMappingKey = "mappings"
RegistryPortMappingFile = "mappings.yaml"
PublishSecretUserKey = "username"
PublishSecretPwKey = "password"
DockerCredentialName = "pipeline-docker-registry"
ProxyConfigMapName = "proxy-mappings"
MinioName = "minio"
MinioBucketLocation = "local"
MinioLogBucket = "pipeline-logs"
NetWorkPolicyName = "pipeline-np"
LabelKeyApp = "app"
LabelKeyJenkins = "jenkins"
JenkinsMaster = "master"
LabelKeyExecution = "execution"
DefaultRegistry = "index.docker.io"
LocalRegistry = "docker-registry"
DefaultTag = "latest"
JenkinsPort = 8080
JenkinsJNLPPort = 50000
RegistryPort = 443
MinioPort = 9000
WebhookEventPush = "push"
WebhookEventPullRequest = "pull_request"
WebhookEventTag = "tag"
TriggerTypeUser = "user"
TriggerTypeWebhook = "webhook"
StateWaiting = "Waiting"
StateBuilding = "Building"
StateSuccess = "Success"
StateFailed = "Failed"
StateSkipped = "Skipped"
StateAborted = "Aborted"
StateQueueing = "Queueing"
StatePending = "Pending"
StateDenied = "Denied"
PipelineFinishLabel = "pipeline.project.cattle.io/finish"
LocalRegistryPortLabel = "pipeline.project.cattle.io/local-registry-port"
PipelineNamespaceLabel = "pipeline.project.cattle.io/pipeline-namespace"
PipelineFileYml = ".rancher-pipeline.yml"
PipelineFileYaml = ".rancher-pipeline.yaml"
EnvGitRepoName = "CICD_GIT_REPO_NAME"
EnvGitURL = "CICD_GIT_URL"
EnvGitCommit = "CICD_GIT_COMMIT"
EnvGitRef = "CICD_GIT_REF"
EnvGitBranch = "CICD_GIT_BRANCH"
EnvGitTag = "CICD_GIT_TAG"
EnvTriggerType = "CICD_TRIGGER_TYPE"
EnvEvent = "CICD_EVENT"
EnvExecutionID = "CICD_EXECUTION_ID"
EnvExecutionSequence = "CICD_EXECUTION_SEQUENCE"
EnvPipelineID = "CICD_PIPELINE_ID"
EnvProjectID = "CICD_PROJECT_ID"
EnvClusterID = "CICD_CLUSTER_ID"
EnvRegistry = "CICD_REGISTRY"
EnvImageRepo = "CICD_IMAGE_REPO"
EnvLocalRegistry = "CICD_LOCAL_REGISTRY"
SettingExecutorQuota = "executor-quota"
SettingExecutorQuotaDefault = "2"
SettingSigningDuration = "registry-signing-duration"
SettingSigningDurationDefault = "2160h"
DefaultTimeout = 60
)