Search within Nested Views or Cloudbees Folders

2014-10-07 Thread milki milk
Our jenkins has hundreds of jobs and views and I'm attempting to fix performance issues on loading Jenkins by categorizing the jobs. I'm found the Nested Views and Cloudbees Folders plugins. However, once I put jobs and views within them, they no longer show up as results in the Jenkins search

Re: Jenkins unable to restart. Requires multiple attempts.

2016-01-13 Thread milki milk
On Wednesday, January 13, 2016 at 4:41:45 AM UTC-8, Ashish Yadav wrote: > > Where in jenkins server are the slave configs defined? I don’t see them > anywhere in the config.xml on MASTER. > I see a slaves section in my config.xml for the master. -- You received this message because you are sub

Re: fetch the api key for the current user?

2016-02-01 Thread milki milk
On Monday, February 1, 2016 at 7:38:49 AM UTC-8, Brian J. Murrell wrote: > > On Sun, 2016-01-31 at 23:45 +0100, Daniel Beck wrote: > > On 30.01.2016, at 19:10, Brian J. Murrell > c...@public.gmane.org > wrote: > > I think any answer to this would likely be a security issue and > > should be rep

Re: Very slow view render

2015-07-26 Thread milki milk
I've had this problem with every version I've tried in Jenkins. From what I can tell, Jenkins is parsing through every single build directory and parsing the build xml files as part of either cleanup, or sanity checking, or some other automated task. The logs are quite activate but the render o

Re: Admin privilege disappears after restart

2015-07-28 Thread milki milk
On Tuesday, July 28, 2015 at 1:16:27 AM UTC-7, Björn Pedersen wrote: > > > I would try to switch steps 7 before step 3. > > Björn > Agreed. All required perms for the admin user should be set before the save step. You also don't need to restart the server to apply perm changes. -- You rece

Re: How to take care of a large Jenkins installation and still keep your sanity

2015-08-28 Thread milki milk
Now this is more interesting. Using the .jenkins.yml file from the repository to inform the job generator what jobs to create is similar to travis. Of course, the details are in the implementation in the next post. I'm curious. When a repo needs testing, does it always go through the job gene

Re: How to take care of a large Jenkins installation and still keep your sanity

2015-08-31 Thread milki milk
On Monday, August 31, 2015 at 9:11:54 AM UTC-7, Khai Do wrote: > > Answers to your questions.. > > >> When a repo needs testing, does it always go through the job generator >> before going through the generated jobs every single time? >> > > You can set it up to update jobs only when there are

Re: How to take care of a large Jenkins installation and still keep your sanity

2015-08-31 Thread milki milk
On Monday, August 31, 2015 at 10:27:11 AM UTC-7, Khai Do wrote: > > Yes, your general assessment is correct. You can, but do NOT necessarily > need to use the jenkins DSL plugin to generate jobs since JJB has it's own > DSL. Not sure if 'out-of-band' mean separate executable, separate jenkins

Re: How to take care of a large Jenkins installation and still keep your sanity

2015-08-31 Thread milki milk
called template). > > Those confusions being hopefully resolved, I would like to answer your > questions. > Oh. So Khai Do isn't responding as someone who knows how Ebay's workflow works. Yes, this was the disconnect I was feeling because there was no mention of

Re: How to take care of a large Jenkins installation and still keep your sanity

2015-09-01 Thread milki milk
On Monday, August 31, 2015 at 1:25:41 PM UTC-7, Guenther, Marc(AWF) wrote: > > On Monday, August 31, 2015 at 10:50:59 AM UTC-7, milki milk wrote: > > Another thing that plagues my use of JJB is the fact that Security > credentials, like those uses in the git scm configu

Re: How to take care of a large Jenkins installation and still keep your sanity

2015-09-02 Thread milki milk
On Friday, August 28, 2015 at 6:55:09 AM UTC-7, Patrick Hund wrote: > > Thanks, here's part II: > http://www.technology-ebay.de/the-teams/mobile-de/blog/taming-the-hydra-part-2.html > So the article only mentions 2 methods - Cloudbees Template Plugin and Jenkins Job DSL. There are at least two o

Re: How to take care of a large Jenkins installation and still keep your sanity

2015-09-03 Thread milki milk
On Thursday, September 3, 2015 at 4:03:50 AM UTC-7, Guenther, Marc(AWF) wrote: > > > On 01 Sep 2015, at 05:02, milki milk > > wrote: > > > I'm not sure what you mean by "when a repo needs testing". So when there > has been a commit in the repo, which c

Re: How to take care of a large Jenkins installation and still keep your sanity

2015-09-17 Thread milki milk
On Monday, August 31, 2015 at 1:25:41 PM UTC-7, Guenther, Marc(AWF) wrote: > > 2. The 'jenkins.yml' files I describe in the blog are purely our own > convention. Neither Jenkins Job Builder nor Job-DSL-Plugin use anything > like that. In particular, they have nothing to do with JJB's yaml files.

Re: Disabling the ping thread in Jenkins

2015-09-24 Thread milki milk
Have you tried the suggestions here: https://wiki.jenkins-ci.org/display/JENKINS/Ping+Thread -- 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+un

Re: Merging git branches to master using Jenkins

2015-09-30 Thread milki milk
Under Advanced Features in https://wiki.jenkins-ci.org/display/JENKINS/Git+Plugin, the docs talk about pre-build branch merging. You can specify the merge type as well - ff, or no-ff. By default, the plugin makes a new tag. As a post-build tag, you can then push the branch and tag back to the r

Re: Git plugin unable to acces local repository

2015-10-02 Thread milki milk
Did you set the credentials to be used the scm section? You need to both define the credentials _and_ use the credentials. On Thursday, October 1, 2015 at 1:38:38 PM UTC-7, Henk van Voorthuijsen wrote: > > I did - there is a credential for user "git" in the global credentials. > -- You receive

Re: New stuff for Jenkins GUI

2015-10-07 Thread milki milk
On Wednesday, October 7, 2015 at 8:04:01 AM UTC-7, Gus Reiber wrote: > > Awesome Maciej, > Yeah, a collapsible job config page is something I think is important > and attainable in a reasonable time window. It was my hope it could have > made the November LTS, but we didn't quite get there. I

Re: Git plugin unable to acces local repository

2015-10-12 Thread milki milk
Yes, that should be it. Defined credentials and using that credential in the selection box for your scm. Are you sure the credentials work? I see you are also using localhost. The scm polling job doesn't havee a node restriction, but the job that does the checkout is done locally on the node it

Re: Job DSL Extracting into Groovy Script

2015-10-13 Thread milki milk
This is more appropriate for the job-dsl-plugin mailing list. readFileFromWorkspace is part of DslFactory. You can pass in a DslFactory through the call to addEmailTemplate or maybe import DslFactory and use it directly. -- You received this message because you are subscribed to the Google Gro

Re: git credentials are missing after copying the jobs

2015-10-21 Thread milki milk
With the SSH Credentials Plugin 1.11, you can now specify your own identifier for credentials - https://wiki.jenkins-ci.org/display/JENKINS/SSH+Credentials+Plugin (click Advanced when you create *new* credentials). If you use the same id across your jenkins instances, then the copied job defin

Re: How to take care of a large Jenkins installation and still keep your sanity

2015-10-29 Thread milki milk
Damien in JENKINS-31152 mentioned the Seed Plugin (https://github.com/jenkinsci/seed-plugin/wiki). This sounds a lot like another formalized framework that is similar to Ebay's seed job. It takes a seed.groovy and/or a seed.properties as configuration. It has a concept of a "project seed" and a