Wilson Mar bio photo

Wilson Mar

Hello!

Calendar YouTube Github

LinkedIn

Let’s all hold hands and sing songs

US (English)   Norsk (Norwegian)   Español (Spanish)   Français (French)   Deutsch (German)   Italiano   Português   Estonian   اَلْعَرَبِيَّةُ (Egypt Arabic)   Napali   中文 (简体) Chinese (Simplified)   日本語 Japanese   한국어 Korean

Overview

This article shows you how to install and configure GitHub hooks into Jenkins version 2 for Continuous Delivery (CD) as well as Continuouse Integration (CI).

I want you to feel confident that you’ve mastered this skill. That’s why this takes a hands-on approach where you type in commands and we explain the responses and possible troubleshooting. This is a “deep dive” because all details are presented.

Like a good music DJ, I’ve carefully arranged the presentation of concepts into a sequence for easy learning, so you don’t have to spend as much time as me making sense of the flood of material around this subject.

Sentences that begin with PROTIP are a high point of this website to point out wisdom and advice from experience. NOTE point out observations that many miss. Search for them if you only want “TL;DR” (Too Long Didn’t Read) highlights.

Stuck? Contact me and I or one of my friends will help you.

What Hooks can do

GitHub’s Repository WebHooks API is described at
https://developer.github.com/v3/repos/hooks

GitHub has an email hook that sends out an email for each change committed.

This repo provides code to email detailed diffs of each commit. It addresses security configurations.

I would like to see each commit appear on my Gmail calendar to help me see commits in context of my other appointments.

  • https://gist.github.com/ngs/3550670
  • https://zapier.com/zapbook/github/google-calendar/
  • https://zapier.com/zapbook/cronofy-calendar-api/github/

PythonAnywhere.com

  1. The documentation is at https://developer.github.com/webhooks/

Service hooks

Services hooks are pre-built within GitHub to take action when events occur on GitHub.

  1. On the GitHub project sending the hook.
  2. Click Settings on the top bar.
  3. Click Webhooks & Services (previously “Service Hooks”).

  4. Click Browse the directory.
  5. Search for emails.

Git Notifier

http://www.icir.org/robin/git-notifier/

Alternately:

  1. https://www.git-notifier.com

  2. Activate via the Google account.
  3. Specify the Account/Repo and the email to be notified.

    Emails are sent free. But phone message cost one Euro each.

Receivers first

We would like Jenkins to attempt a new build when a change is committed in GitHub.com or pushed to it from Git.

The alternative to this is polling on a scheduled interval, which can be a little bit inefficient if nothing was changed. However, a regular schedule is useful when people work strict hours.

Begin from Jenkins

  1. In Manage Jenkins | Manage Plugins, Available tab, find “GitHub plugin” at
    https://wiki.jenkins-ci.org/display/JENKINS/Github+Plugin
  2. Return to the Jenkins Dashboard.
  3. Create a new item or click an existing build job.
  4. Select Configure from the menu.
  5. In v2, under Build Triggers, Check “GitHub project”.

    In v1, scroll to “Source Code Management”. Check “Git”.

  6. Specify the Project URL.
  7. Check “Build when a change is pushed to GitHub”.

    Set up CRSF on Jenkins

    Cross Site Request Forgery (CRSF) exploits Cross-origin_resource_sharing, so all PUTs are excluded, except when an exception is added in Jenkins.

  8. Type in the Filter field CORS support for Jenkins until the plugin appears on the Manage Jenkins, Plugin Manager, Available page.

  9. If it appears, check the box under “Installed” .

    If it doesn’t appear, click on the Installed tab to see if it’s there already.

  10. If you click on the link, the name is “Cors Filter Plugin” on
    https://wiki.jenkins-ci.org/display/JENKINS/CSRF+Protection

  11. “Prevent Cross Site Request Forgery exploits” needs to be unchecked disabled in order for webhooks to work.

  12. In the authentication section, near the bottom,
    check the box “Prevent Cross Site Request Forgery exploits”.

  13. Click “Install without restart” of the Jenkins server.

    The response is temporarily until “Success” appears.

    Checking internet connectivity
    Checking update center connectivity
    Success
    
  14. Click “Restart Jenkins when no jobs are running”.

Get GitHub secret

The below describes how Jenkins ensures security by making use of a “deploy key” where a public-private SSH key pair is generated for each GitHub SCM repository. Each key pair is attached to a repository instead of to a personal user account. The public key is stored on the Jenkins server. The correpsonding public key is stored in the repository along with the code. Jenkins matches the public and public keys before granting access to each single GitHub repository.

https://developer.github.com/guides/managing-deploy-keys
discusses the advantage of “Deploy keys” versus other approaches for authentication and authorization.

  1. SSH into a command-line in your Jenkins server</a>, generate a keypair:

    ssh-keygen -C “jenkins123@xyz.com”

    The default is RSA.

    PROTIP: Some enterprises have a central list of servers with unique “service account” names associated with a server (hardware) instead of email addresses for individual people.

    NOTE: Organizations that don’t believe in SSH have an alternative to Jenkins provide a UI to generate keys.

    The response:

    Generating public/private rsa key pair.
    Enter file in which to save the key (/root/.ssh/id_rsa): 
    

    “id_rsa” is the default name of the private key file.

    “id_rsa.pub” contains the public key.

  2. Press Enter to accept the default prefix.

    The response:

    Enter passphrase (empty for no passphrase): 
    
  3. Press Enter twice to not specify a passphrase.

    Enter same passphrase again: 
    
  4. Bring the public key to GitHub:

    cd ~/.ssh
    cat id_rsa.pub
    

    You should see a file beginning with

    ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDOgkh/0a1it6moT/ueEN3c/5CsX6x619icK9wMRpIWNMyZQGaSnU8a1xl6ZWuwIRM1LzjcS/7JeI1sYiW4K0MhYXYtR7b693L8jLppSKL8/+zWQ+kiPDpGLV7hOU1wINrVDsjWvRSIi+ihb7wy6atQRTtAq/0mStc6sBLNYJoVMzaOw+a6cob+IJQ0VNH4wVdImnCQU8T13afFLNwEvXMHdjXYHnmt/V+nQV7omb6oCX/xnqdDiI0LEQLZu+EI5j2ELdeBF9p9Nk4ko0JJknDrR0OCOAoZJVebQDG+ZsHwha9Xw1dDTVJJkmNGvp3pi0BegSPk4sAbZg2zIVHUpqtJ jenkins123@xyz.com
    
  5. Highlight the private key file and press Command/Control+C to copy the contents to your laptop’s Clipboard.


  6. Switch to GitHub.com.

  7. In the top right corner of any GitHub page, click your profile photo.

  8. On your profile page, click the Repositories tab.

  9. Click the name of your repository.

  10. Click Settings in your repository’s right sidebar.

  11. Click Deploy Keys In the sidebar.

  12. Click Add deploy key.

  13. Paste your public key in and click Submit. ???

  14. Files in the .ssh folder should be 600:

    chmod 600 ~/.ssh
    
  15. Enable verbose logging (-vT) to see what permissions it complains about:

    ssh -vT git@github.com

    The response can be:

    Permission denied (publickey).
    

    The desired response is:

    
      
  16. Append the public key to the bottom of the authorized_keys file:

    cat id_rsa.pub » ~/.ssh/authorized_keys

    NOTE: On some systems it’s authorized_keys2.

    PROTIP: Use the verbose option on the ssh command to say which key files it’s actually trying.

Set up webhook on GitHub

  1. Sign into the repository. You won’t see the “Settings” tab unless you have permissions.
  2. Click on the Settings tab.
  3. Click on “Webhooks & services” from the left menu.
  4. Click on “Add webhook” on the upper right.

    Webhooks allow external services to be notified when certain events happen within your repository. When the specified events happen, we’ll send a POST request to each of the URLs you provide.

    https://developer.github.com/webhooks/creating
    explains each field:

  5. In Payload URL goes a URL such as “http://localhost:4567/payload” or

    http://138.68.1.138:8080/github-webhook/

    CAUTION: Use http://

  6. For Content type, “application/json” sends a HTTP POST. Older form data is sent with “application/x-www-form-urlencoded”.

  7. For secret, leave blank ???

  8. Select “Just the push event” for “Which events would you like to trigger this webhook?” or too much will be sent.

    The technical name of all events are described at
    https://developer.github.com/webhooks/#events

  9. Click Add Webhook.

    GitHub sends a Ping
    https://developer.github.com/webhooks/#ping-event.

    Test if it works

    There are several ways to check:

    • changes on GitHub.com by those with permissions
    • changes pushed to GitHub from a Git client
    • changes in a Pull Request accepted.

    Do each of the above when the Jenkins server is down, then start it up again to see if queuing worked.

    Pull Request

  10. On GitHub, at your repo, fork the repo to your account.

  11. On your local machine, create a folder and clone from your account’s copy of the repo.

  12. Checkout the current commit to a new branch.

  13. Make a change in the README.md file.

  14. Git add and commit.

  15. Git Push it back to GitHub.

  16. Accept the PR. Note the time, and if the Jenkins server is on another time zone (UTC), translate the time on the Jenkins server.

  17. On the Jenkins jobs Dashboard, select the project you updated to see a new job invoked.

  18. See the new job from “anonymous user”?

SSH Agent Forwarding

For those who don’t want to have a private key file, even in encrypted form, stored anywhere away from a trusted machine, there is the “same agent” protocol. An “ssh-agent” program runs in the background and keeps private key loaded into memory. Servers call the ssh-agent as if they were already running on the server. This is like asking a friend to enter their password so that you can use their computer.

The passphrase need to be entered only once, when the ssh-agent is invoked.

SSH agent forwarding can be used to make deploying to a server simple. It allows you to use your local SSH keys instead of leaving keys (without passphrases!) sitting on your server.

If you’ve already set up an SSH key to interact with GitHub, you’re probably familiar with ssh-agent. It’s a program that

At the risk of However, there is different vulnerability: agent hijacking over the wire.

In short, this allows a chain of ssh connections to forward key challenges back to the original agent, obviating the need for passwords or private keys on any intermediate machines.

http://www.unixwiz.net/techtips/ssh-agent-forwarding.html#fwd by Steve Friedl

https://developer.github.com/guides/using-ssh-agent-forwarding/

References

  • https://help.github.com/articles/about-webhooks/

  • http://lxanders.github.io/posts/jenkins-with-github-integration/#prepare-github
  • https://thepracticalsysadmin.com/setting-up-a-github-webhook-in-jenkins/
  • http://fourkitchens.com/blog/article/trigger-jenkins-builds-pushing-github

  • http://blog.shippable.com/configure-web-hooks-to-trigger-continuous-integration

TODO: Quote URL which says “Payload sizes need to be monitored because GitHub caps them at 5 MB each.”

The objective of Jenkins2 is to install with a recommended set of plugins (a more “curated” experience than v1) that cover 80% of use cases out of the box.

More about Git & GitHub

This is one of a series on Git and GitHub:

  1. Git and GitHub videos

  2. Why Git? (file-based backups vs Git clone)
  3. Git Markdown text

  4. Git basics (script)
  5. Git whoops (correct mistakes)
  6. Git messages (in commits)

  7. Git command shortcuts
  8. Git custom commands

  9. Git-client based workflows

  10. Git HEAD (Commitish references)

  11. Git interactive merge (imerge)
  12. Git patch
  13. Git rebase

  14. Git utilities
  15. Git-signing

  16. Git hooks
  17. GitHub data security
  18. TFS vs GitHub

  19. GitHub actions for automation JavaScript
  20. GitHub REST API
  21. GitHub GraphQL API
  22. GitHub PowerShell API Programming
  23. GitHub GraphQL PowerShell Module