Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Wiki Replica
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
TPA
Wiki Replica
Commits
43cc0763
Unverified
Commit
43cc0763
authored
4 years ago
by
anarcat
Browse files
Options
Downloads
Patches
Plain Diff
add jenkins architecture diagram
parent
275bb7d8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
service/jenkins.md
+15
-1
15 additions, 1 deletion
service/jenkins.md
service/jenkins/architecture.dot
+33
-0
33 additions, 0 deletions
service/jenkins/architecture.dot
service/jenkins/architecture.png
+0
-0
0 additions, 0 deletions
service/jenkins/architecture.png
with
48 additions
and
1 deletion
service/jenkins.md
+
15
−
1
View file @
43cc0763
...
...
@@ -47,7 +47,21 @@ run.
## Design
TODO: overview and diagram
Jenkins is mostly used to build websites but also run tests for
certain software project. Configuration and data used for websites and
test are stored in Git and, if published, generally pushed to the
[
static site mirror system
](
howto/static-component
)
.
This section aims at explaining how Jenkins works. The following
diagram should provide a graphical overview of the various components
in play. Note that the static site mirror system is somewhat elided
here, see the
[
architecture diagram there
](
howto/static-component#design
)
for a view from that
other end.

What follows should explain the above in narrative form, with more
details.
### Jobs configuration
...
...
This diff is collapsed.
Click to expand it.
service/jenkins/architecture.dot
0 → 100644
+
33
−
0
View file @
43cc0763
digraph
jenkins
{
label
=
"Jenkins CI architecture, torproject.org, Februrary 2021"
subgraph
"clusterhosts"
{
label
=
"hosts"
labelloc
=
bottom
static
[
label
=
"static site mirror system"
]
git
[
shape
=
record
label
=
"<gitolite> gitolite | <http> https://"
]
puppet
build
[
label
=
"build-$ARCH-$NN"
]
deb
[
label
=
"Debian package\narchive"
]
git
:
gitolite
->
jenkins
[
label
=
"HTTP trigger"
]
jenkins
->
git
:
http
[
label
=
"pulls config"
]
build
->
jenkins
[
label
=
"pulls\njobs"
]
build
->
git
:
http
[
headlabel
=
"pulls\nrepos"
]
build
->
static
[
taillabel
=
"pushes\nartefacts"
]
jenkins
->
LDAP
[
label
=
auth
]
build
->
IRC
[
label
=
"IRC notification\n(over email)"
]
build
->
deb
[
label
=
"pushes packages\"
]
}
subgraph
clusterusers
{
label
=
users
labelloc
=
bottom
TPA
webdevs
public
}
TPA
->
puppet
->
{
static
,
build
,
git
,
jenkins
}
TPA
->
git
:
gitolite
webdevs
->
git
:
gitolite
public
->
static
}
This diff is collapsed.
Click to expand it.
service/jenkins/architecture.png
0 → 100644
+
0
−
0
View file @
43cc0763
116 KiB
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment