Re: Error sending to the following VALID addresses; SendFailedException message: 501 5.1.7 Invalid Address

2019-01-10 Thread Ujjawal Khare
Can any one guide me how to fix this issue "SendFailedException message: 501 5.1.7 Invalid address" ? Test email was success but fails with error when i execute the build. Regards, Ujjawal On Friday, 4 January 2019 14:02:13 UTC+5:30, Ujjawal Khare wrote: > > Hello, > > Me too facing same issue

Re: Kubernetes default jnlp container

2019-01-10 Thread Carlos Sanchez
You have to create a default PodTemplate and then put its name in the field "Defaults Provider Template Name" in settings On Thu, Jan 10, 2019 at 7:56 AM Maciej Gąsiorowski < maciej.m.gasiorow...@gmail.com> wrote: > Hi, > > It is possible to set custom default jnlp container (from private repo) >

RE: CLI command to start jenkins job with default and overridenparameters

2019-01-10 Thread Daniel Butler
Hi Vicki, According to https://wiki.jenkins.io/display/JENKINS/Parameterized+Build, for buildWithParameters you should use URL query params to pass the values. To use your example: curl -v https://jenkins/job/JobName/buildWithParameters?targ_env=dev --user userName:userToken Regards, Daniel

Re: NoRouteToHostException when trying to connect to a Jenkins URL API from a pipeline

2019-01-10 Thread SysInt
Thank you all for your help, I'm doing to follow the advice posted and keep you updated. -- 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+unsubs

Everytime I need to upgrade jenkins when restart docker container

2019-01-10 Thread Charlie Cheng
Correct Hello: I use jenkins docker image to run the jenkins, but Everytime I stop and rm the docker container , next time when I start it again, I need upgrade jenkins, looks like below: *Dependency errors:* Some plugins could not be loaded due to unsatisfied dependencies. Fix these issues

Re: Error sending to the following VALID addresses; SendFailedException message: 501 5.1.7 Invalid Address

2019-01-10 Thread Slide
Can you give more information about what mail server you are using and so forth? Also, if you can enable debug mode in the global config area for email-ext (Extended Email Plugin) and post the log with secure information redacted, it might help. On Thu, Jan 10, 2019 at 1:04 AM Ujjawal Khare wrote

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

2019-01-10 Thread roey . azroel
Fabio, Did you find the solution for this issue or the root cause? Thanks Roey On Sunday, August 26, 2018 at 12:12:27 PM UTC+3, fabio...@singlepoint.ie wrote: > > Interesting that if I have a loop with some activity as follows, the job > completes successfully, so it seems to be a constraint o

Re: Files sourced on pipeline shell step

2019-01-10 Thread Neil T
On Wednesday, 9 January 2019 09:19:25 UTC, Kamil Dzierżanowski wrote: > > Hello, > > I'm trying to determine, which (if any) files are sourced by the shell, in > which commands specified in "sh" pipeline step are executed. I need to make > sure the NVM (Node Version Manager) is sourced everytim

How can I find specific text in console output and get ID of log in pipeline?

2019-01-10 Thread Viacheslav Dubrovskyi
Hi. I use Rich Text Plugin for generate own result table in build. Before version 2.26 in https://plugins.jenkins.io/workflow-job it was possible to use grep in job folder for find specific text in console output and get log ID. For example: exec = """ LOG_PATH="$JENKINS_HOME/jobs/test_job/b

Creating 2 pipelines in a single jenkinsfile

2019-01-10 Thread Faad Sayaou
Hi everyone, I have this scenario i would like to implement but i don not know if that is possible within a single jenkinsfile. My idea was to have 2 pipelines 1st pipeline -git checkout -build -Test 2nd pipeline if first build from the first pipeline was successful, then -re-do the first 3

Re: Creating 2 pipelines in a single jenkinsfile

2019-01-10 Thread Faad Sayaou
I was thinking maybe doing something like this would help but unfortunately not node { stages } node2 { stages } but it is viewed by jenkins as a single pipeline. I am using the scripted pipeline syntax On Thursday, 10 January 2019 16:25:11 UTC+1, Faad Sayaou wrote: > > Hi everyon

Re: Kubernetes default jnlp container

2019-01-10 Thread Maciej Gąsiorowski
Thanks a lot ;) W dniu czwartek, 10 stycznia 2019 10:36:35 UTC+1 użytkownik Carlos Sanchez napisał: > > You have to create a default PodTemplate and then put its name in the > field "Defaults Provider Template Name" in settings > > On Thu, Jan 10, 2019 at 7:56 AM Maciej Gąsiorowski < > maciej.m.

Re: Error sending to the following VALID addresses; SendFailedException message: 501 5.1.7 Invalid Address

2019-01-10 Thread Slide
You need to setup the server settings in the Extended E-mail Notification section of the global configuration if you are using that configuration in your job. On Thu, Jan 10, 2019 at 9:00 AM Ujjawal Khare wrote: > Here are attached configuration. When put on DEBUG it validates recipients > emai

Re: Creating 2 pipelines in a single jenkinsfile

2019-01-10 Thread Denis
You can create two pipeline jobs and have the first one trigger the second one as a downstream job. i.e in a finally block you can check the result of the build and trigger the pipeline that publish to nexus On January 10, 2019 5:30:03 PM GMT+02:00, Faad Sayaou wrote: >I was thinking maybe doi

Re: Creating 2 pipelines in a single jenkinsfile

2019-01-10 Thread Arnaud bourree
Hi, Denis answer is good but why are you doing that? You said if pipeline #1 succeed, you run pipeline #2 which redo same steps including git checkout then push result to nexus. But you don't have guarantee that git checkout will fetch same source code. Why not add input validation on nexus stage

Problem with TAP Plugin

2019-01-10 Thread 'aaron Scholz' via Jenkins Users
Hi, i am running a jenkins master on a ubuntu machine and a slave agent on a Windows 10 PC. While running that pipeline, I see that "archiveArtifacts" works as expected, but the TapPublisher fails with an exception. Is there something wrong in my pipeline script? Or is this a plugin bug? Any hi

Re: Creating 2 pipelines in a single jenkinsfile

2019-01-10 Thread Adrien Lecharpentier
I agree with Arnaud. However, having an input means that if you cancel the input, you'll have aborted the build. So, even if the first 3 steps are successful, you'll have an aborted build. You could try/catch the input, but that will complexify the pipeline imo. Could you explain why you need to

Re: Creating 2 pipelines in a single jenkinsfile

2019-01-10 Thread Faad Sayaou
Hi everyone. thank you all for your wonderful replies. First of all, I will like to have a two separate pipelines in order to manage builds from feature branches as well as to make sure the right and stable version is uploaded to my nexus repository. I tried Denis's approach by creating two sepa

Re: CLI command to start jenkins job with default and overridenparameters

2019-01-10 Thread Vicki Kozel
Thank you Daniel! Do you know if there is a way to pass a file parameter this way? On Thursday, January 10, 2019 at 1:51:03 AM UTC-8, Daniel Butler wrote: > > Hi Vicki, > > According to https://wiki.jenkins.io/display/JENKINS/Parameterized+Build, > for buildWithParameters you should use URL que

Re: Error sending to the following VALID addresses; SendFailedException message: 501 5.1.7 Invalid Address

2019-01-10 Thread Ujjawal Khare
Do you mean Extended email configuration inside Manage Jenkins --> Configure System ? Please see the attached configuration. Its already there but still doesn't work. On Thu, Jan 10, 2019 at 9:55 PM Slide wrote: > You need to setup the server settings in the Extended E-mail Notification > sect

Webhook creation with ngrok and CI with Jenkins

2019-01-10 Thread Gouri S
I am doing some research with Jenkins. I want to use CI with GitHub for Jenkins job. I used ngrok utility to create public url. I tried creating WebHook in GitHub but always get error as Invalid HTTP response 403. I also get No valid crumb was included in the request. I tried changing CSRF for

JCasC: Fail Jenkins boot when problem occurs with applying the YAML

2019-01-10 Thread Oliver Gondža
Is there a way to get the Jenkins process aborted when JCasC fails to apply the config so one do not have to analyze logs to tell success from failure? Thanks! -- oliver -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from thi