Creating & Configuring Jenkins Pipeline
Step 1: Configure Access Token in Gitea
-
In Gitea, click on your user avatar at the top right, then select Settings > Applications.
-
Enter a token name (e.g.,
Jenkins
), set it toPrivate
, and select all permissions as READ/WRITE. Click Generate Token. -
Copy the token and store it in a secure place. This token will be used for Jenkins authentication.
Step 2: Install Required Plugins in Jenkins
-
Log into Jenkins. From the Dashboard, click Manage Jenkins > Manage Plugins.
-
Under Available Plugins, search for and install the following:
- Gitea
- SonarQube Scanner
- Prometheus Metrics
Step 3: Create Jenkins Pipeline
-
From the Jenkins Dashboard, click New Item.
-
Select Organization Folder and name it (e.g.,
OWASP Juice Shop Pipeline
). -
Scroll down to Repository Sources and select Gitea Organization.
-
Under Credentials, click Add. Select the organization folder name, set the Kind to Gitea Personal Access Token (PAT), and paste the token generated from Gitea.
-
Set the Owner to your Gitea username, and then click Apply and Save.
Step 4: Configure Webhook in Gitea
-
In Jenkins, go to Manage Jenkins > Configure System. Scroll down to Gitea Servers and add your Gitea server details.
- Discover branches: Only branches filed as PRs or master/main branch.
- Discover pull requests from origin: Both the current pull request revision and the pull request merged with the current target branch revision.
-
Click Apply and Save.
-
In Gitea, navigate to the project, click on Settings > Webhooks.
-
Click Add Webhook, then select Gitea. Fill out the form:
- URL:
<http://localhost:8080/gitea-webhook/post>
- Method:
POST
- Content Type:
application/json
- Branch filter:
*
- URL:
-
Click Add Webhook to save the configuration.
Step 5: Configure SSH Keys
-
On your local machine (DSB Hub), generate an SSH key pair:
ssh-keygen -t rsa -b 4096 -C "jenkins@dsb-hub.com"