GitHub Commits aren't triggering builds

2016-11-07 Thread Naveen Srinivasan
Hi,
 We are using jenkins pipeline with github organization. The github 
hooks are setup by the plugin and there are notifications coming to the 
repo AFAIK. In the jenkins logs we could see "Received POST for 
https://github.com/Revature/core; but the builds aren't being triggered. 
And our jenkinsfile has this

properties([pipelineTriggers([[$class: 'GitHubPushTrigger']])])

But even with this builds aren't triggered automatically. What are we 
missing? 

Thanks
Naveen

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/a11105e6-42fb-4ee5-a0ce-34b49210a171%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


log file jnlp docker

2016-11-02 Thread Naveen Srinivasan
Hi,
  I would like to post the build log from the jnlp docker image I am 
running to slack. Where would the build log be? Are there any ENV variables 
to get the log file?

Thanks
Naveen

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/2c36b71c-90ea-4d42-8d35-541e8c0849b3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Help with invoking scripts via CURL

2016-10-09 Thread Naveen Srinivasan
Hi, 

  I am trying to automate Jenkins fully using helm and kubernetes 
https://github.com/kubernetes/charts/tree/master/stable/jenkins . By doing 
this the admin password is available via kubernetes   secretes.  The goal 
is to automate bringing up jenkins without logging into the server 
manually. As part of that I would like to execute scripts pointing to 
jenkins server.


When I try to use admin with password 
curl --data-urlencode "script=$(<./test.groovy)" http://admin:cEunYtfPfP@
http://192.168.99.100:31419/scriptText


I am getting an exception
hudson.security.AccessDeniedException2: anonymous is missing the 
Overall/Read permission
at hudson.security.ACL.checkPermission(ACL.java:65)
at hudson.model.Node.checkPermission(Node.java:464)
at jenkins.model.Jenkins.getTarget(Jenkins.java:4426)
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:674)
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:876)


 Where as If I login into the server and get the API token for admin then 
the same code works if i use the API token.
curl --data-urlencode "script=$(<./test.groovy)" 
http://admin:b8d84d283000b5ce7b446a756f820352@192.168.99.100:31419/scriptText

What am I doing wrong? Is this possible?  Like I had mentioned I would like 
to use automate everything without ever logging into the server.

Thank you!
Naveen
 

0 New
Reply to all

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/7e52c4db-8759-4f38-8bcf-028930f76498%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.