-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjenkins.yml
84 lines (81 loc) · 2.08 KB
/
jenkins.yml
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
jenkins:
systemMessage: "Scheme Jenkins"
numExecutors: 0
nodes:
- permanent:
mode: NORMAL
name: "agent1"
labelString: "docker"
numExecutors: 8
remoteFS: "/home/jenkins/agent"
launcher:
SSHLauncher:
host: "jenkins-agent"
port: 22
credentialsId: agent_ssh
launchTimeoutSeconds: 60
maxNumRetries: 3
retryWaitTime: 30
sshHostKeyVerificationStrategy:
manuallyTrustedKeyVerificationStrategy:
requireInitialManualTrust: false
authorizationStrategy:
projectMatrix:
entries:
- group:
name: "authenticated"
permissions:
- "Job/Read"
- "Overall/Read"
- user:
name: "admin"
permissions:
- "Overall/Administer"
- user:
name: "anonymous"
permissions:
- "Job/Read"
- "Overall/Read"
securityRealm:
local:
allowsSignup: false
users:
- id: admin
name: admin
password: "${readFile:/secrets/adminpassword}"
appearance:
pipelineGraphView:
showGraphOnBuildPage: true
showGraphOnJobPage: true
credentials:
system:
domainCredentials:
- credentials:
- basicSSHUserPrivateKey:
scope: GLOBAL
id: agent_ssh
username: "jenkins"
description: "SSH key for jenkins agent"
privateKeySource:
directEntry:
privateKey: "${readFile:/secrets/id_rsa}"
jobs:
- script: >
folder('index_scheme_org') {
displayName: 'index.scheme.org'
}
- script: >
multibranchPipelineJob('index_scheme_org/build') {
displayName: 'Build and deploy'
branchSources {
git {
id('github')
remote('https://github.com/schemeorg-community/index.scheme.org')
}
}
orphanedItemStrategy {
discardOldItems {
numToKeep(10)
}
}
}