Re: Script to get Jenkins CentOS versions?

2020-11-26 Thread 'Björn Pedersen' via Jenkins Users
try https://registry.hub.docker.com/v2/library/jenkins/tags/list zil...@gmail.com schrieb am Donnerstag, 26. November 2020 um 17:07:46 UTC+1: > I read the page you linked, and the part regarding tags pagination. I > infer from the page that I should be able to get a list of tags with the > foll

Re: Login Problems with issues.jenkins-ci.org - who to contact?

2020-11-26 Thread Mark Waite
I've had to refresh the captcha on occasion to show an updated captcha that I can then enter. You might try that? You might also try with a long password that uses only characters in the ASCII range. I'm not sure how locale processing is handled in the password validation process. On Thu, Nov 2

Re: Login Problems with issues.jenkins-ci.org - who to contact?

2020-11-26 Thread Yannick Lacaute
I have reset my password with https://beta.accounts.jenkins.io/ I am able to connect on https://beta.accounts.jenkins.io/ but I still cannot log in issues.jenkins-ci.org. any idea ? Le jeudi 26 novembre 2020 à 01:29:55 UTC+1, Mark

Need To change Email Receive display name in Email Notification

2020-11-26 Thread sanjay naik
Hi All. I need to change Email Receiver display name in Jenkins. I want to set display name as different name like "DEV OPS." Currently mail is coming through my email ID which I configured in manage jenkins E-mail Notification. Please let me know the configuration to do this changes. Thanks

RE: Java install for Windows agent?

2020-11-26 Thread Jérôme Godbout
You can inject the wanted java folder into the Node configuration into Jenkins master configuration panels: Add environments variable into your node and set: Name: JAVA_HOME value: C:\Java\jdk1.8.0_261\ [cid:image001.png@01D6C410.D2280FD0] Take Care the Windows version doesn’t like Java path w

Re: Java install for Windows agent?

2020-11-26 Thread zil...@gmail.com
JDK11 is now available. Let the installer decide where to install it, and set your JAVA_HOME variable to point to it. Chris On Thursday, November 26, 2020 at 2:03:39 PM UTC-5 DavidA wrote: > Hi > > I have now partially succeeded in connecting to a Windows 10 agent from > Jenkins via ssh. The

Java install for Windows agent?

2020-11-26 Thread David Aldrich
Hi I have now partially succeeded in connecting to a Windows 10 agent from Jenkins via ssh. The ssh part succeeds but the connection then fails with: "Couldn't figure out the Java version of E:\jenkins/jdk/bin/java" I don't know why it's choosing that path as I have not specified a Java path.

RE: Recommended way to setup a windows agent nowadays ?

2020-11-26 Thread Jérôme Godbout
You might need to manually connect for a first time to the host to add it or here is the script command line I do when I want to add a host to the known host file: "ssh-keygen -R ${domain} -f \"${know_host_path}\"" "ssh-keygen -t rsa ${domain} >> \"${know_host_path}\"" know_host_path is normall

Re: Recommended way to setup a windows agent nowadays ?

2020-11-26 Thread David Aldrich
I would like to connect to Windows agents via SSH (currently using JNLP). I've installed OpenSSH client and server on the Windows machine, but not sure what to do next. In the agent configuration I've selected: 'Launch agents via ssh' but when I launch I get: [11/26/20 17:49:12] [SSH] Opening SS

Re: Script to get Jenkins CentOS versions?

2020-11-26 Thread zil...@gmail.com
I read the page you linked, and the part regarding tags pagination. I infer from the page that I should be able to get a list of tags with the following. https://hub.docker.com/v2/repositories/library/jenkins/tags/list But if I paste the URL on my browser, I get "txnid": "REPOSREQ-29168001-281

Re: Script to get Jenkins CentOS versions?

2020-11-26 Thread zil...@gmail.com
Yeah that makes sense. Thanks. Chris On Thursday, November 26, 2020 at 2:50:04 AM UTC-5 ice...@googlemail.com wrote: > The problem probably is that the centos image is not in the first 30 > results . You would need to get the next page(s) until you find a centos > image. > See https://docs.

Re: How to change defaultValue of input in case of declarative pipeline script?

2020-11-26 Thread Victor Martinez
You can try with environment variables or the Field annotation as shown below import groovy.transform.Field @Field def value1 = 'initial value' On Wednesday, 25 November 2020 at 19:00:24 UTC Kiyoshi Ohgishi wrote: > I want to change from scripted pipeline script to declarative pipeline > scri