Re: ssh agent failing on pipeline script running on slave

2019-04-24 Thread forpix321
Hi Salaran, *have you resolved this issue ?, I'm getting the same issue like wise any help :)* On Tuesday, May 23, 2017 at 4:24:19 PM UTC+5:30, Aitkiar Salaran wrote: > > Hi, > > I have pipeline job that uses ssh agent step to set up credentials to > connect to git repository and clone it. When

Docker-Hub jenkins or jenkinsci?

2019-04-24 Thread 'Sven Hüßner' via Jenkins Users
There are two organisations on Docker-Hub that have Jenkins images: https://hub.docker.com/u/jenkins and https://hub.docker.com/u/jenkinsci They both seem to have the "blueocean" variant for example. The jenkins/blueocean seems to be pretty unused tho

Re: Error after update jenkins version

2019-04-24 Thread Randall Becker
After upgrading to 2.174, my Jenkins docker image became corrupted and my standalone Jenkins configuration in Ubuntu 16.04 does not even bring up the configuration page for Multibranch Pipelines. I am suspecting a jar file in the distribution is corrupt but cannot prove it. I think the release m

Re: Jenkins unable to access svn repo - "svn: E200015: authentication cancelled" Password Mismatch

2019-04-24 Thread 'Harry G.' via Jenkins Users
Either your password is actually wrong. Or you might have Externals which require "additional credentials" in Jenkins SVN job config. Even if the Externals have the same user, you will need additional credentials. On Tuesday, April 23, 2019 at 4:00:54 PM UTC+2, Paul Adams wrote: > > > *JENKINS

Re: Docker-Hub jenkins or jenkinsci?

2019-04-24 Thread Mark Waite
On Wed, Apr 24, 2019 at 7:19 AM 'Sven Hüßner' via Jenkins Users < jenkinsci-users@googlegroups.com> wrote: > There are two organisations on Docker-Hub that have Jenkins images: > https://hub.docker.com/u/jenkins > and > https://hub.docker.com/u/jenkinsci > > https://hub.docker.com/r/jenkinsci/jenk

Trying to install 2.164 on Ubuntu - Failing

2019-04-24 Thread Randall Becker
I'm getting the following messages immediately after install. Apr 24, 2019 1:48:06 PM hudson.ExtensionFinder$GuiceFinder$FaultTolerantScope$1 error INFO: Failed to instantiate optional component com.cloudbees.hudson.plugins.folder.properties.FolderCredentialsProvider$FolderCredentialsProperty$De

Re: Trying to install 2.164 on Ubuntu - Failing

2019-04-24 Thread Randall Becker
Solved my own problem. Rebooted. Looks like the initial run of Jenkins cannot do Multibranch Pipelines, but after a restart, thinks become sane. On Wednesday, April 24, 2019 at 9:53:00 AM UTC-4, Randall Becker wrote: > > I'm getting the following messages immediately after install. > > Apr 24, 20

Help with Jenkins vSphere Plugin

2019-04-24 Thread gavin58582
I am trying to deploy a VM with Jenkins using the vSphere plugin. The Output Console is saying Finished: SUCCESS. However the VM is not being deployed, when I look in the vSphere and the only thing that is happening Is I am seeing the Test account is logging in and logging off. Nothing is

Re: Docker-Hub jenkins or jenkinsci?

2019-04-24 Thread Baptiste Mathus
Also please read https://jenkins.io/blog/2018/12/10/the-official-Docker-image/ Le mer. 24 avr. 2019 à 15:43, Mark Waite a écrit : > > > On Wed, Apr 24, 2019 at 7:19 AM 'Sven Hüßner' via Jenkins Users < > jenkinsci-users@googlegroups.com> wrote: > >> There are two organisations on Docker-Hub that

Re: Blue Ocean viewer for offline files

2019-04-24 Thread Baptiste Mathus
For artifacts, you could use the artifact-managet-s3 plugin. I think I've seen an ongoing effort for an azure equivalent, not sure what the status is now. Not sure something is started for GCP? For build logs, given IIRC that effort is stopped for now, this would be harder likely. Le mar. 23 av

Jenkins 2.164 Prompting Terminal for Passphrase

2019-04-24 Thread Randall Becker
This is a new situation that I have encountered after a clean install of 2.164. Attempting to use an SSH keypair (with passphrase) to talk to BitBucket.org, in a Multibranch Pipeline job. The key is properly configured as an Private Key (entered manually) with a Passphrase. When I hit Scan Mult

Re: Jenkins 2.164 Prompting Terminal for Passphrase

2019-04-24 Thread Mark Waite
On Wed, Apr 24, 2019 at 11:09 AM Randall Becker wrote: > This is a new situation that I have encountered after a clean install of > 2.164. Attempting to use an SSH keypair (with passphrase) to talk to > BitBucket.org, in a Multibranch Pipeline job. The key is properly > configured as an Private Ke

Re: Jenkins 2.164 Prompting Terminal for Passphrase

2019-04-24 Thread Mark Waite
On Wed, Apr 24, 2019 at 11:32 AM Mark Waite wrote: > > > On Wed, Apr 24, 2019 at 11:09 AM Randall Becker wrote: > >> This is a new situation that I have encountered after a clean install of >> 2.164. Attempting to use an SSH keypair (with passphrase) to talk to >> BitBucket.org, in a Multibranch

Re: Jenkins 2.164 Prompting Terminal for Passphrase

2019-04-24 Thread Randall Becker
Thanks, however, I'm not sure this is it. My startup script is: unset TERM # Not really useful nohup java \ -Dorg.jenkinsci.plugins.gitclient.CliGitAPIImpl.useSETSID=true \ -jar jenkins.war \ < /dev/null 2>&1 \ > jenkins.log & which should not be attached to a term

Re: Jenkins 2.164 Prompting Terminal for Passphrase

2019-04-24 Thread Randall Becker
I'll bite. How can I use JGit instead of git in Jenkins? I thought it was hard-burnt into the Git Plugin. On Wednesday, April 24, 2019 at 1:08:48 PM UTC-4, Randall Becker wrote: > > This is a new situation that I have encountered after a clean install of > 2.164. Attempting to use an SSH keypair

Re: Jenkins 2.164 Prompting Terminal for Passphrase

2019-04-24 Thread Mark Waite
On Wed, Apr 24, 2019 at 12:05 PM Randall Becker wrote: > Thanks, however, I'm not sure this is it. My startup script is: > > unset TERM # Not really useful > nohup java \ > -Dorg.jenkinsci.plugins.gitclient.CliGitAPIImpl.useSETSID=true \ > -jar jenkins.war \ > < /dev/null

Re: Jenkins 2.164 Prompting Terminal for Passphrase

2019-04-24 Thread Mark Waite
On Wed, Apr 24, 2019 at 12:10 PM Randall Becker wrote: > I'll bite. How can I use JGit instead of git in Jenkins? I thought it was > hard-burnt into the Git Plugin. > > In the "Global Tools Configuration" page of "Manage Jenkins", use the "Git" button and the "Add" button under it to add "jgit" as

Re: Jenkins 2.164 Prompting Terminal for Passphrase

2019-04-24 Thread Randall Becker
The Multibranch Pipeline Plugin using JGit ends up incompatible. > /usr/local/bin/jgit --version # timeout=10 > /usr/local/bin/jgit ls-remote --symref > g...@bitbucket.org:nonstop-git/nsgit.git # timeout=10 ERROR: [Wed Apr 24 18:23:01 UTC 2019] Could not update folder level actions from sour

Re: Jenkins 2.164 Prompting Terminal for Passphrase

2019-04-24 Thread Randall Becker
I should qualify... the passphrase prompt disappeared when setsid is used, but that still does not allow a passphrase-less keypair. On Wednesday, April 24, 2019 at 2:33:07 PM UTC-4, Randall Becker wrote: > > The Multibranch Pipeline Plugin using JGit ends up incompatible. > > > /usr/local/bin/jg

Re: Jenkins 2.164 Prompting Terminal for Passphrase

2019-04-24 Thread Mark Waite
On Wed, Apr 24, 2019 at 12:33 PM Randall Becker wrote: > The Multibranch Pipeline Plugin using JGit ends up incompatible. > > > /usr/local/bin/jgit --version # timeout=10 > > /usr/local/bin/jgit ls-remote --symref > g...@bitbucket.org:nonstop-git/nsgit.git # timeout=10 > > ERROR: [Wed Apr 24 18

Re: Jenkins 2.164 Prompting Terminal for Passphrase

2019-04-24 Thread Mark Waite
On Wed, Apr 24, 2019 at 12:35 PM Randall Becker wrote: > I should qualify... the passphrase prompt disappeared when setsid is used, > but that still does not allow a passphrase-less keypair. > > That may indicate that you have another problem. If the passphrase prompt disappeared, then ssh shoul

Re: Jenkins 2.164 Prompting Terminal for Passphrase

2019-04-24 Thread Randall Becker
I went back to try to use 2.164 on Docker and am experiencing similar issues. I wonder whether this update is DOA. On Wednesday, April 24, 2019 at 2:45:16 PM UTC-4, Mark Waite wrote: > > > > On Wed, Apr 24, 2019 at 12:35 PM Randall Becker > wrote: > >> I should qualify... the passphrase prompt d

Re: Jenkins 2.164 Prompting Terminal for Passphrase

2019-04-24 Thread Mark Waite
I've been using 2.164.1 and 2.164.2 since their release with both Java 8 and Java 11, alternating between various configurations, I'm confident the update is not DOA. I use bitbucket repositories that are secured with passphrase protected private keys. I use GitHub repositories that are secured w

Re: Jenkins 2.164 Prompting Terminal for Passphrase

2019-04-24 Thread Randall Becker
I'm rebuilding both docker and standalone images and will compare. The docker image is fine with the key pair after I restarted it. I also had to pick off the host signature using ssh -i blah g...@bitbucket.org... THEN the docker image was able to authenticate. I'm going to try the same on the

Re: Jenkins 2.164 Prompting Terminal for Passphrase

2019-04-24 Thread Randall Becker
My docker image is doing fine, but the standalone Jenkins just won't authenticate with either JGit or git. It would be really nice to be able to do this without docker. Is there a standard launch recipe for my situation (in Ubuntu) or is SSH with passphrases just not available anymore? java -ja

Re: Jenkins 2.164 Prompting Terminal for Passphrase

2019-04-24 Thread Mark Waite
On Wed, Apr 24, 2019 at 4:27 PM Randall Becker wrote: > My docker image is doing fine, but the standalone Jenkins just won't > authenticate with either JGit or git. It would be really nice to be able to > do this without docker. Is there a standard launch recipe for my situation > (in Ubuntu) or

Re: Jenkins 2.164 Prompting Terminal for Passphrase

2019-04-24 Thread Mark Waite
On Wed, Apr 24, 2019 at 4:54 PM Mark Waite wrote: > > > On Wed, Apr 24, 2019 at 4:27 PM Randall Becker wrote: > >> My docker image is doing fine, but the standalone Jenkins just won't >> authenticate with either JGit or git. It would be really nice to be able to >> do this without docker. Is ther

Re: Jenkins 2.164 Prompting Terminal for Passphrase

2019-04-24 Thread Mark Waite
On Wed, Apr 24, 2019 at 6:30 PM Mark Waite wrote: > > > On Wed, Apr 24, 2019 at 4:54 PM Mark Waite wrote: > >> >> >> On Wed, Apr 24, 2019 at 4:27 PM Randall Becker wrote: >> >>> My docker image is doing fine, but the standalone Jenkins just won't >>> authenticate with either JGit or git. It woul

Re: JNLP java.nio.channels.ClosedChannelException with kubernetes-plugin

2019-04-24 Thread Gopi Naidu
I have got into the same issue. Could you please post the solution if anything is found? On Sunday, 26 August 2018 04:28:47 UTC+5:30, fabio...@singlepoint.ie wrote: > > I'm using Kubernetes plugin 1.12.3 > > The plugin works well, but whenever the agent does streams the log to the > master, it c