Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add Jenkins documentation to Devops #1972

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions components/TopBar/CategoryDescriptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ const categoryDescriptions: CategoryDescriptions = {
'DevOps methodologies are a set of practices that combine software development and information technology operations to shorten the systems development life cycle while delivering features, fixes, and updates frequently in close alignment with business objectives.',
docker:
'Docker is a software platform that allows you to build, test, and deploy applications quickly. Docker packages software into standardized units called containers. These are isolated from one another and bundle their own software, libraries, and configuration files; they can also communicate with each other through well-defined channels.',
jenkins:
'As an extensible automation server, Jenkins can be used as a simple CI server or turned into the continuous delivery hub for any project.',
kubernetes:
'Kubernetes is an open-source container orchestration platform that automates the deployment, scaling, and management of containerized applications.',
microservices:
Expand Down
9 changes: 9 additions & 0 deletions database/devops/jenkins.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[
{
"name": "Learn how to automate and deploy software by building projects",
"description": "Jenkins provides hundreds of plugins to support building, deploying, and automating any project.",
"url": "https://www.jenkins.io/doc/",
"category": "devops",
"subcategory": "jenkins"
}
]
1 change: 1 addition & 0 deletions database/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export { default as cicd } from './devops/cicd.json'
export { default as devopsLifecycle } from './devops/devops-life-cycle.json'
export { default as devopsMethodologies } from './devops/devops-methodologies.json'
export { default as docker } from './devops/docker.json'
export { default as jenkins } from './devops/jenkins.json'
export { default as kubernetes } from './devops/kubernetes.json'
export { default as microservices } from './devops/microservices.json'

Expand Down