Noel Georgi

Results 115 comments of Noel Georgi

@aaronlippold that `sh` is the jenkins dsl for executing shell commands, it's upto the user to select the interpreter. Eg: ``` sh '''#!/bin/bash -l ''' ```

*jenkins.yaml* ```yaml jobs: │ - file: /var/jenkins_home/seed-jobs/seeds.groovy ``` */var/jenkins_home/seed-jobs/seeds.groovy* ```groovy import JenkinsUtils JenkinsUtils.createTFJob('foobar') ``` The `JenkinsUtils` is an external class present in `/var/jenkins_home/seed-jobs`. I would like to set the additional...

@jetersen Shared libraries are for pipeline DSL, not job DSL.

@jetersen I thought of that, but my seed jobs created a lot of other seed jobs, it just was too much complexity. :D. And the initial ones are so many...

I have a use case where I have assigned multiple cloud accounts to different containers. I use a tool called [aws-vault](https://github.com/99designs/aws-vault) to login to each of these accounts. So if...

@honsiorovskyi A great of of thanks, I accomplished what I was looking out for with this extension, for anyone this is the aws-vault helper I wrote: ``` function avl() {...

I faced the same issue while testing jiva, if the disk on the node backing the local pv gets removed/re-installed the new local mount path comes up with an empty...

This also fixes: https://github.com/sgerrand/docker-glibc-builder/issues/9

the benefit being a single docker file: - that downloads glibc and verifies its integrity - compiles it - creates alpine package out of it Well wrt to `ld.so.conf` it's...

[alpine-glibc.tar.gz](https://github.com/sgerrand/docker-glibc-builder/files/3161981/alpine-glibc.tar.gz) @sekarpdkt This is what I used.