Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IP address of localhost:8080 -in webhooks of github +jenkins

I am trying to configure webhooks in github so that it will deploy every time I do a new push, I have added web hooks in github and given the address of jenkins which is http://localhost:8080/github-webhook/ but it did not work and I found out that we need to find our IP address and I added it as follows:

http://'ipaddress'/github-webhook/

but I still did not get the jenkins to work? Thanks

like image 712
Naveen DINUSHKA Avatar asked Oct 19 '17 04:10

Naveen DINUSHKA


2 Answers

You need a public address for Github to point to when detected a push request. localhost is on your localmachine.

The way i solved it is to use a proxy agent Ngrok. Enter command >ngrok http 8080, it will generate http://{hexa-numbers}.ngrok.io copy the generated public address and put in your github repository webhook http://{hexa-numbers}.ngrok.io/github-webhook/.

At this point when you save it, it will send a post request to ngrok server, got redirected to localhost and you will see a green tick.

like image 61
Ronny Ling Avatar answered Oct 17 '22 13:10

Ronny Ling


If you are talking about github.com, then yes, localhost would not work.
As mentioned in "GitHub webhook configuration "

the Jenkins instance must be able to connect to GitHub and vice versa.

You can check that with the "Test hook" button from the GitHub UI and see if Jenkins receive a payload.

Make sure you have the JENKINS GitHub Plugin properly installed and configured.

like image 1
VonC Avatar answered Oct 17 '22 14:10

VonC