This IRC bot sits on #jenkins
as jenkins-admin
and allow users to create/fork repositories on GitHub, etc. More info: Jenkins IRC Bot Page
This repo is containerized (image available on docker hub), then deployed to our infrastructure via Helmfile.
You can find the helm chart and instructions to install it in jenkins-infra/helm-charts.
This section contains some info for developers.
The bot is designed to be used in Jenkins, but it can be adjusted in other projects,
which use the similar infrastructure (GitHub, IRC, JIRA).
Adjustements can be made via System properties.
These properties are located and documented in the
org.jenkinsci.backend.ircbot.IrcBotConfig
class.
Several examples are provided below.
- Use Maven to build the project and to run the unit tests.
- Then use Dockerfile to create a Docker image
For detailed examples see Jenkinsfile located in this repository.
Preconditions:
- You have a JIRA Test Project, where you have admin permissions.
- You have a GitHub Organization with
Administer
permissions
Setting up the environment:
- Setup Github credentials in the
~/.github
file
- Format: Java properties
- Entries to set:
login
andpassword
- It's also possible
oauth
andendpoint
properties (see github-api)
- Setup JIRA credentials in the
~/.jenkins-ci.org
file
- Format: Java properties
- Entries to set:
userName
andpassword
Running the bot for testing:
java -Dircbot.name=test-ircbot \
-Dircbot.channels="#jenkins-ircbot-test" \
-Dircbot.testSuperUser="${YOUR_IRC_NAME}" \
-Dircbot.github.organization="jenkinsci-infra-ircbot-test" \
-Dircbot.jira.url=${JIRA_URL} \
-Dircbot.jira.defaultProject=TEST \
-Dorg.slf4j.simpleLogger.showDateTime=true \
-Dorg.slf4j.simpleLogger.dateTimeFormat="yyyy-MM-dd HH:mm:ss:SSS Z"
-jar target/ircbot-2.0-SNAPSHOT-bin/ircbot-2.0-SNAPSHOT.jar
After executing this command the bot should connect to your IRC chat.