Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/apolloclark/jenkins
Demo of the Jenkins Pipeline plugin, using Vagrant
https://github.com/apolloclark/jenkins
Last synced: 5 days ago
JSON representation
Demo of the Jenkins Pipeline plugin, using Vagrant
- Host: GitHub
- URL: https://github.com/apolloclark/jenkins
- Owner: apolloclark
- License: mit
- Created: 2016-06-01T20:59:16.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-15T19:03:19.000Z (about 7 years ago)
- Last Synced: 2024-06-09T21:40:34.526Z (5 months ago)
- Language: Shell
- Size: 60.5 KB
- Stars: 29
- Watchers: 4
- Forks: 24
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jenkins - Pipeline
Demo of the Jenkins Pipeline plugin, using Vagrant to run an Ubuntu 14.04 LTS
64-bit instance, locally using Virtualbox, or remotely using Amazon. It will
pull down and use whatever the latest Jenkins Stable build is.![alt text](https://github.com/apolloclark/vagrant-jenkins-pipeline/blob/master/preview.jpg "Jenkins Pipeline preview")
## Docker-compose, run Server and Clients
```shell
# run Server and Client Docker images
docker-compose up
# open a browser: http://127.0.0.1:8080/# job/PipelineDemo/
# click "Build Now"# shutdown
docker-compose stop# cleanup
docker-compose rm -f
```## Docker, run Server
```shell
# change dir
cd jenkins-server# build
docker build --no-cache=true -t apolloclark/jenkins-server .# run
docker run -it -p 8080:8080 -p 50000:50000 apolloclark/jenkins-server# open a browser: http://127.0.0.1:8080/job/PipelineDemo/
# click "Build Now"
```## Vagrant
```shell
# change dir
cd jenkins-server# install the vagrant aws provider
vagrant plugin install vagrant-aws# copy the example AWS config
cp -f aws-config-example.yml aws-config.yml# run
vagrant up
# open a browser: http://127.0.0.1:8080/job/PipelineDemo/
# click "Build Now"
```## Deploy to Amazon
```shell# install the vagrant aws provider
vagrant plugin install vagrant-aws# clone the repo
git clone https://github.com/apolloclark/vagrant-jenkins-pipeline
cd vagrant-jenkins-pipeline# copy the example AWS config, customize
cp -f aws-config-example.yml aws-config.yml# run
vagrant up --provider=aws
# open a browser: http://:8080/job/Python_Pipeline/
# click "Build Now"# create SSH port forwarding tunnel
ssh -L 8080:127.0.0.1:8080 admin@ -i# create SSH port forwarding tunnel without a Terminal
ssh -nNT -L 8080:127.0.0.1:8080 admin@ -i
```## Jenkins Logs
```shell
watch tail -n 32 /var/log/jenkins/jenkins.log
```## Painite attacks
```shell
# scan the local network
nmap -sn -vv 172.17.0.1/24# TCP SYN port scan a specific IP
nmap -sS -vv 172.17.0.2# attempt to connect
curl -i http://172.17.0.2:8008/1677330664470980985/ | less# list all the DIRB wordlists
ls -lah /usr/share/dirb/wordlists/
ls -lah /usr/share/dirb/wordlists/others
ls -lah /usr/share/dirb/wordlists/vulns# run the dirb attack, filter out responses that are 250 bytes
dirb http://172.17.0.2:8008/1677330664470980985/ \
/usr/share/dirb/wordlists/common.txt -f \
| grep -v 250```
## Configure for Programming Language
There are multiple sub-projects within the ./data folder, which are Quickstarts
for various programming languages and web frameworks. You can edit the
Vagrantfile to install language specific code quality tools, and enable
language specific Build projects.## Links
- https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Plugin
- https://dzone.com/refcardz/continuous-delivery-with-jenkins-workflow
- https://documentation.cloudbees.com/docs/cookbook/pipeline-as-code.html
- http://udaypal.com/jenkins-workflow-getting-started/
- https://www.cloudbees.com/blog/parallelism-and-distributed-builds-jenkins- https://github.com/jenkinsci/pipeline-examples/tree/master/pipeline-examples
- https://github.com/jenkinsci/workflow-aggregator-plugin/blob/master/demo/plugins.txt
- https://github.com/jenkinsci/pipeline-plugin/blob/master/COMPATIBILITY.md- https://wiki.jenkins-ci.org/display/JENKINS/Plugin+tutorial
- http://www.slideshare.net/cloudbees/pimp-your-continuous-delivery-pipeline-with-jenkins-workflow-wjax-14/20