Official Jenkins docker plus some plugins and scripts in order to integrating with the Gerrit.
Additional plugins include:
- docker-build-publish
- docker-plugin
- gerrit-trigger
- git
- ldap
- maven-plugin
- parameterized-trigger
- swarm
- Demonstrate how to integrate Jenkins with Gerrit.
- Domonstrate how to configure Jenkins docker-plugin to utilise other docker images as the slave nodes.
- There's a sample image which demonstrate how to build a jenkins-slave image for Jenkins docker-plugin.
- There's another project which privdes sample scripts about how to combine this image with Gerrit image and other images to create a ci system.
createJenkins.sh
#A public ssh key should be imported to Gerrit first as the <Gerrit admin uid>'s public key.
setupJenkins.sh \
<Gerrit admin uid> \
<Gerrit admin email> \
<Gerrit ssh ip/name> \
<Gerrit canonicalWebUrl> \
<Jenkins WebUrl> \
<Nexus public repoUrl>
sample:
setupJenkins.sh \
gerrit \
gerrit@demo.org \
172.17.42.1 \
http://ci.demo.org/gerrit \
http://ci.demo.org/jenkins \
http://ci.demo.org/nexus/content/groups/public
destroyJenkins.sh
upgradeJenkins.sh
LDAP_SERVER (required), the LDPA URI, i.e. ldap-host:389
LDAP_ROOTDN (required), the LDAP BASE_DN
LDAP_USER_SEARCH_BASE (optional), base organization unit to use to search for users
LDAP_USER_SEARCH (optional), LDAP object field to use for the search query
LDAP_GROUP_SEARCH_BASE (optional), base organization unit to use to search for groups
LDAP_GROUP_SEARCH_FILTER (optional), filter to use querying for groups
LDAP_GROUP_MEMBERSHIP_FILTER (optional), filter to use when writing queries to verify if a user is member of a group
LDAP_MANAGER_DN (optional), LDAP adim user
LDAP_MANAGER_PASSWORD (optional), LDAP admin password
LDAP_INHIBIT_INFER_ROOTDN (required), flag indicating if ROOT_DN should be infered
LDAP_DISPLAY_NAME_ATTRIBUTE_NAME (optional), LDAP object field used as a display name
LDAP_DISABLE_MAIL_ADDRESS_RESOLVER (required), flag indicating if the email address resolver should be disabled
LDAP_MAIL_ADDRESS_ATTRIBUTE_NAME (optional), LDAP object field used as a email address
LDAP_GROUP_NAME_ADMIN (optional), LDAP admin group. Default to administrators.