Hi,
Is there a plugin available to invoke AWS lambda from Jenkins Pipeline
Stage ?
Thanks
--
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
I have a similar issue, I have a build job that is parameterized and am Not
able to successfully use that parameter to pass as an argument to my python
script in my pipeline stage
On Monday, July 10, 2017 at 2:46:17 PM UTC-7, Justin Khoo wrote:
>
> how can I read in the params from jenkins scrip
how can I read in the params from jenkins script shell sh?
pipeline {
stages{
stage('Deploy') {
steps {
sh 'python deploy.py ${params.version}'
}
}
}
}
I have tried several ways, but still not able to read in params.
--
You received this m
Hi,
We have a stage in Jenkins pipeline where we invoke a Jenkins Job. (e.g.
build job: ... )
Is there a way for that Jenkins job that is invoked to pass in a
value/parameter to the next stage in the pipeline ?
thanks
--
You received this message because you are subscribed to the Google Gro
I'm looking to use the Github Org plugin to post pass/fail results to the
Github status API on pull requests.
It looks like the user that owns the OAuth token needs to have write access
to the repo.
I'm wondering if there is a way to allow this user to post to the status
API without actually havi
Thank you for your prompt reply!
So if my understanding is correct:
1. Install ioncube encoder on the build node.
2. Restrict where the project can be built in the job's configuration.
That's it. There should be no issue in orchestrating the build from Jenkins
master when the software required f
Hi,
On 10.07.2017 21:27, Jason LeMauk wrote:
> Am I correct in assuming that when the project is built, the ioncube
> encoder will not need to be installed on the Jenkins Master machine but
> will need to be installed on the Jenkins Agent / Slave machine?
The master also has two executors, so jo
I have a distributed build system in place (1 Jenkins Master and several build
nodes).
I have a piece of software required for a project's build whose licensing is
tied to the MAC address of the machine which has the software installed
(ioncube encoder).
Am I correct in assuming that when the
Hello,
I want to set the status in my declarative pipeline to success if the input
step is aborted OR reached it's timeout.
steps {
timeout(time: 30, unit: 'MINUTES') {
input(id: 'userInput', message: 'Promote build?')
}
}
If I don't promote the build or it expires 30 minutes o
I would like to set "description" field in automatically generated branches
in Multibranch Pipeline to add some information like links to latest
artifacts, links to latest generated documentation, etc. While I would
settle for one standard default description for all the branches, ideally
it wo
Yes, that makes sense. I think this is acceptable in our scenario.
Thanks for the pointer.
If you (or anyone else here) has any links to examples it would be greatly
appreciated 👍
> On 10. Jul 2017, at 17:48, nicolas de loof wrote:
>
> it means a build with some "malicious code" (sic) could
it means a build with some "malicious code" (sic) could access all other
builds, secrets injected into a build environment by jenkins, all host
ressources, etc. It could as well create by intent or because of some buggy
script create thousands containers and exhaust host resources.
consider docker
The security of these jenkins builds are not critical since they are just
for testing. Therefore it sounds perhaps a simpler approach.
However, i'm interested in what the issues are with build isolation. Does
that mean that build could fail, and under what sort of circumstance?
--
You received
Not so simple
bind mounting docker.sock means you give access to anything on host, so you
just give up with security and isolation between builds.
Docker in Docker require some adequate combination for the docker daemon
setup to be nested, especially on how it stores containers layers on disk
(and
Then it sounds like this i achievable. Thanks so much for the response. At
least i know that this is something worth looking in to.
I read somewhere about this Docker in Docker approach (i think it is
sometimes referred to as DinD?). Some people where saying it is not a good
idea.
Am i right in
You have two options :
1. use a Docker in Docker image (play-with-docker.com for sample is using
this approach)
2. bind mount /var/run/docker.sock into your build container so you can
interact with the host's docker daemon
Both of them involve some security consideration, so you might need to
dou
When trying the 45 minutes units into the syntax helper (pipeline-syntax/
of the project) it display the following code:
timeout(45) {
// some block
}
If I change the unit the syntax change like follow:
timeout(time: 45, unit: 'SECONDS') {
// some block
}
So I will try with the following
The main aim behind this post is to find out if this is even possible
before losing too much time. So if anyone could any insight at all it would
be greatly appreciated.
--
You received this message because you are subscribed to the Google Groups
"Jenkins Users" group.
To unsubscribe from this
Hi,
I'm facing the problem with Jenkins Git authentication. I attach a
screenshot of the stack trace. I have SSH gitlab connection configured with
a private key and a passphrase. The configuration is made in
Credentials/System/Global credentials (unrestricted). The path to the
private key
Took me a while to come back but just wanted to point out the group
approach is what is "recommended" by Docker in the docs @
https://docs.docker.com/engine/installation/linux/linux-postinstall/ So
definitely the least hacky of all the solutions :)
Richard.
On Sun, 9 Jul 2017 at 06:55 Dan Kinon
That seems to be working fine. Guess, when I read it the first time, it
threw me with the field named 'submitter'! Thanks
On Friday, 7 July 2017 13:59:44 UTC+1, Richard Ginga wrote:
>
> if you look at the "input" pipeline step documentation, use:
>
> submitter (optional)
> User IDs and/or *exter
Hello,
I am having similar problem. Right now i am having multiple directories, i
need to control access to sub directories. For example, i have component
specific jenkins jobs in
parent/project/component/*
How can i configure this pattern in role base authentication?
I tried giving parent/
22 matches
Mail list logo