Ansible role to install Jenkins for the Data.gov platform.
The following plugins are installed. You may install additional plugins by
specifying them in the jenkins_additional_plugins
variable.
- ansible allows to execute Ansible tasks as a job build step
- ansicolor (enable in pipeline) add ANSI escape sequences, including color, to Console Output
- audit-trail (requires configuraiton) keeps a log of who performed particular Jenkins operations, such as configuring jobs
- aws-credentials allows storing Amazon IAM credentials within the Jenkins Credentials API
- configuration-as-code an opinionated way to configure Jenkins based on human-readable declarative configuration files
- blueocean is a new Jenkins UI optimized for user experience; it reduces clutter and increases clarity for every member of your team
- docker-workflow allows to build and use Docker containers from pipelines
- github integrates Jenkins with GitHub projects
- github-issues create GitHub issues on build failures
- job-dsl define jobs in a programmatic form in a human readable file
- packer allows Packer tasks to build and publish AMI and OS images
- periodicbackup (requires configuration) allows archiving and restoring your Jenkins (and Hudson) home directory
- pipeline-utility-steps adds small, miscellaneous, cross platform utility steps for Pipeline Plugin jobs
- role-strategy adds a new role-based strategy to manage users' permissions
- saml (requires configuration) allows authentication to Jenkins via the SAML 2.0 protocol
- ssh-agent allows you to provide SSH credentials to builds via a ssh-agent in Jenkins
- timestamper (enable in pipeline) adds timestamps to the Console Output
- workflow-aggregator a.k.a. Pipeline, a suite of plugins that lets you orchestrate simple or complex automation
- ws-cleanup (requires configuraiton) declared build wrapper and post build step to delete files matching a pattern
Install geerlingugy.jenkins.
Example playbook.
---
- name: Install
hosts: all
roles:
- gsa.datagov-deploy-jenkins
In addition to the variables available for geerlingugy.jenkins, these variables are also available.
The admin username to create.
The admin password to assign.
Additional Jenkins plugins to install.
File content for the TLS/SSL certificate to serve for your Jenkins instance.
File content for the TLS/SSL key to serve for your Jenkins instance.
The public URL where Jenkins will be available.
While our goal is to configure production-ready Jenkins out of the box, there are some steps that need to be configured manually after you deploy your instance.
Jenkins is pulled from the Jenkins repos for your distro (currently we only support Ubuntu). As long as your OS is configured to update automatically, you'll always pull in the latest version of Jenkins. For Debian/Ubuntu, install unattended-upgrades.
TODO
TODO
TODO
Requirements:
- Docker v18
- pipenv
Install the dependencies.
$ pipenv install --dev
Run the tests.
$ pipenv run test
Once converged in molecule, you can access the Jenkins image locally. First, get the IP address of the docker container.
$ docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' jenkins-bionic
Then open your web browser to that IP on port 8080.
See CONTRIBUTING for additional information.
This project is in the worldwide public domain. As stated in CONTRIBUTING:
This project is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the CC0 1.0 Universal public domain dedication.
All contributions to this project will be released under the CC0 dedication. By submitting a pull request, you are agreeing to comply with this waiver of copyright interest.