java.lang.NoSuchMethodError: No such DSL method 'withKubeConfig' found among steps [approveReceivedEvent,

2020-12-17 Thread anilkumar panditi
Hi, My Pipeline is failing with below error. java.lang.NoSuchMethodError: No such DSL method 'withKubeConfig' found among steps [approveReceivedEvent, approveRequestedEvent, archive, bat, build, catchError, checkout, container, containerLog, createEvent, deleteDir, dir, dockerFingerprintFrom,

Blue Ocean Github enterprise token does not work

2020-12-16 Thread anilkumar panditi
Hi, I am creating a pipeline in blue ocean with github enterprise and when i enter the token and connect nothing is happening and i could not see anything in logs . I tried the work around from below , downgrading the GitHub API plugin version to 1.106 , but when downgraded its blue ocean

Re: Jenkins Integration with LDAP - Testing Connection Fails

2020-12-31 Thread anilkumar panditi
Hi MK, i am getting ldap_bind: Invalid credentials (49) what are the credentials need to give here. Thanks, Anil On Saturday, 22 August 2020 at 10:00:55 UTC+5:30 Mk wrote: > Hi Jeremy, Thanks for the reply. Actually *ldapsearch* command on jenkins > master server terminal works. Below is the

Re: Jenkins Integration with LDAP - Testing Connection Fails

2020-12-31 Thread anilkumar panditi
am,DC=domain,DC=com" "(sAMAccountName=jenkins)" -W Thanks, Anil On Friday, 1 January 2021 at 12:33:02 UTC+5:30 Mk wrote: > Hi Anil, > > Manager and manager password need to configured to validate the test > connection. > > On Fri, 1 Jan 2021, 12:29 pm anilkumar

Re: Jenkins Integration with LDAP - Testing Connection Fails

2021-01-01 Thread anilkumar panditi
DAP Credentials. So it requires > the complete CN,OU details. To get that contact your domain administrators. > > On Fri, 1 Jan 2021, 1:10 pm anilkumar panditi, > wrote: > >> Okay, can you help how to create manager credentials, also i am trying >> from the command (wh

Re: run jenkins pipeline fails "docker": error=2, No such file or directory

2021-01-28 Thread anilkumar panditi
Hi, I have Jenkins running as docker container and in my Jenkins File , in initialize stage i have following which is working also , i have installed docker from Docker hub latest. Not sure where is the problem . Pipeline is failing with the following. ava.io.IOException: error=2, No such file

cleanup jenkins

2021-06-09 Thread anilkumar panditi
Hi, I have jenkins instance deployed as a pod on Openshift with Persistent Volume attached. How to cleanup Jenkins from time time to make sure that Persistent volume is not full. Please help Thanks, Anil -- You received this message because you are subscribed to the Google Groups "Jenkins

Unable to install ECR plugin

2021-05-27 Thread anilkumar panditi
Hi, I am trying to install amazon ecr plugin And its trying to install attached dependent plugins as well but Amazon webservices SDK ,failing with following error. used: java.io.IOException: Failed to load https://updates.jenkins.io/download/plugins/aws-java-sdk/1.11.995/aws-java-sdk.hpi to

Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

2021-05-28 Thread anilkumar panditi
Hi, sorry for asking repeated question, Earlier i had worked on a Jenkins instance which is a docker docker container which uses the docker inside container like below. -v /var/run/docker.sock:/var/run/docker.sock --privileged="true" --user="root" But , my Jenkins instance is running on

Re: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

2021-05-31 Thread anilkumar panditi
Hi Could you please help. On Fri, May 28, 2021 at 11:06 PM anilkumar panditi < anilkumar.pand...@gmail.com> wrote: > Hi, > sorry for asking repeated question, > Earlier i had worked on a Jenkins instance which is a docker docker > container which uses the docker inside containe

Re: Unable to install ECR plugin

2021-05-28 Thread anilkumar panditi
jenkins using a docker-image with oc new-app and i can install amazon ecr. Can you help? On Thu, May 27, 2021 at 7:46 PM Mark Waite wrote: > > > On Thu, May 27, 2021 at 4:52 AM anilkumar panditi < > anilkumar.pand...@gmail.com> wrote: > >> Hi, >> I am trying to ins

Jenkins URL https://.com/ is not working(502 Bad Gateway)

2021-02-10 Thread anilkumar panditi
Hi, I have configured jenkins URL , Manage Jenkins>System configuration>Jenkins Location>Jenkins URL ex: https://.com/ And i have curled on host where Jenkins running as docker container , [root@ip- ~]# curl -kv https://.com/ * About to connect() to DNS.com port 443 (#0) * Trying x... *

Re: Jenkins URL https://.com/ is not working(502 Bad Gateway)

2021-02-10 Thread anilkumar panditi
connected and throwing 502 bad gateway. Thanks, Anil On Wednesday, 10 February 2021 at 16:09:55 UTC+5:30 dheinric wrote: > Am Mittwoch, den 10.02.2021, 00:14 -0800 schrieb anilkumar panditi: > > And i have curled on host where Jenkins running as docker container , > > > So, this se

Re: Jenkins URL https://.com/ is not working(502 Bad Gateway)

2021-02-11 Thread anilkumar panditi
Hi Dirk, Could you please give the docker run command to use 443 , Thanks Anil Panditi On Wednesday, 10 February 2021 at 17:39:44 UTC+5:30 dheinric wrote: > Am Mittwoch, den 10.02.2021, 04:00 -0800 schrieb anilkumar panditi: > > docker run --name myjenkins -d -u root -p 8080:8080 -p 50

Multibranch Pipeline deploys other branches commits

2021-03-15 Thread anilkumar panditi
Hi, We have a multi branch pipeline , when one of the branch is deployed ,we see the other branched commits as well in the stage view. Any idea to solve this? Please help -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from

Need to adjust Jenkins pipeline logs using Groovy syntax at each stage

2021-11-01 Thread anilkumar panditi
Hi, I am working on below to suppress Jenkins pipeline logs using Groovy syntax at each stage, like for Initialization or Build stage we need to log only "ERROR" level. and for Deployment Stage we need to log DEBUG level logs.. And don't want to print each and every message in console output.