freeze that doesn't work for Jobs in the subfolder

2020-02-07 Thread James Nord
try allItems instead of items -- 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+unsubscr...@googlegroups.com. To view this discussion on the web v

Re: JCasC not working with vSphere cloud retention strategy

2020-02-07 Thread Ben Ptacek
Thanks! I will give Gitter a shot. On Friday, February 7, 2020 at 11:43:00 AM UTC-6, Mark Waite wrote: > > The configuration as code gitter channel > https://gitter.im/jenkinsci/configuration-as-code-plugin is probably a > good place to start the discussions about specific changes that might b

Shared library function cannot call other shared library function in separate file if called function uses "writeFile"

2020-02-07 Thread David Karr
The statement I make in the subject doesn't make sense, but I don't know how else to describe it. I'm working on a set of builds using scripted pipelines. Our Jenkinsfiles are very short, all of the build logic is in the shared library. In the "main" shared library function, I'm trying to cal

Re: Plugin Installs Failing

2020-02-07 Thread Steve Rogers
For the sake of completeness, this turned out to be blocked at our firewall based on a list of banned IP addresses. This still seems strange as I was able to curl the update files directly from that machine without issue. The firewall (Palo Alto) seemed to not like the redirects to mirrors and ter

Re: JCasC not working with vSphere cloud retention strategy

2020-02-07 Thread Mark Waite
The configuration as code gitter channel https://gitter.im/jenkinsci/configuration-as-code-plugin is probably a good place to start the discussions about specific changes that might be needed. The contributing guide for that plugin describes how to prepare pull requests for success https://github

Re: JCasC not working with vSphere cloud retention strategy

2020-02-07 Thread Ben Ptacek
Thanks Mark. Understood on doing the fix and PR. Happy to do that, but I have not done any Jenkins Plugin development. So if anyone has any pointers on how to fix, that would be appreciated. On Friday, February 7, 2020 at 10:51:07 AM UTC-6, Mark Waite wrote: > > https://plugins.jenkins.io/vsphe

Re: JCasC not working with vSphere cloud retention strategy

2020-02-07 Thread Mark Waite
https://plugins.jenkins.io/vsphere-cloud lists that the plugin is maintained by Jason Swager, Eric Lordahl, and Peter Darton . They would be the ones that would likely evaluate a pull request proposing a fix. Pull requests should be submitted to https://github.com/jenkinsci/vsphere-cloud-plugin/

JCasC not working with vSphere cloud retention strategy

2020-02-07 Thread Ben Ptacek
Is there anyone to help with this existing bug regarding the retention strategy and JCasC? https://issues.jenkins-ci.org/browse/JENKINS-60029?page=com.atlassian.jira.plugin.system.issuetabpanels%3Aall-tabpanel Thanks Ben -- You received this message because you are subscribed to the Google Gro

Pipeline with multiple docker images loses the ability to docker

2020-02-07 Thread 'Marc Runkel' via Jenkins Users
I am having a problem where after using a custom image on some stages, the following stages suddenly can't access the docker daemon. Here is the current Jenkinsfile: pipeline { agent any options { timeout(time: 10, unit: 'MINUTES') buildDiscarder(logRotator(numToKeepStr:'4')) } e

Re: Best Practices for Dockerfile in repository

2020-02-07 Thread 'Marc Runkel' via Jenkins Users
Hey Simon, We went ahead and built our own.. FROM docker RUN apk add --no-cache git nodejs npm docker-compose openssh-client && \ apk add python py-pip py-setuptools git ca-certificates && \ pip install python-dateutil && \ git clone https://github.com/s3tools/s3cmd.git /opt/s3cmd &&