Last active
January 1, 2025 08:22
-
-
Save vprasadreddy/8202d4a09be33167c91c5a94e20c7ea0 to your computer and use it in GitHub Desktop.
Jenkins Installation and Plugins to install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Install Jenkins on Mac OS | |
| https://www.macminivault.com/installing-jenkins-on-macos/ | |
| //Steps to install Jenkins on Ubuntu | |
| sudo wget -O /usr/share/keyrings/jenkins-keyring.asc \ | |
| https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key | |
| echo "deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc]" \ | |
| https://pkg.jenkins.io/debian-stable binary/ | sudo tee \ | |
| /etc/apt/sources.list.d/jenkins.list > /dev/null | |
| sudo apt-get update | |
| sudo apt-get install jenkins | |
| //Plugins | |
| Azure CLI | |
| Azure Credentials | |
| Deploy to container | |
| Docker Pipeline | |
| Docker | |
| Git | |
| GitHub Integration | |
| Kubernetes | |
| Maven Integration | |
| Pipeline Utility Steps | |
| Sonar Scanner | |
| Pipeline Stage View Plugin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment