Claudio
Claudio
> ```groovy > pipeline { > agent any > stages { > stage('Initialize') { > steps { > sh 'printenv' > } > } > } > } > ```...
Thanks @bitwiseman ,now it is more clear, but my question is: how can I retrieve the actor ( user ) who pushed the code? The actor is sent by Bitbucket...
@bitwiseman I'm getting only the followings: GIT_BRANCH:mybranch, GIT_COMMIT:xxxxxxxxxxxxx, GIT_PREVIOUS_COMMIT:xxxxxxxxxxxxx, GIT_URL:https://mybitbucketurl/scm/MYPROJ/myrepo.git My pipeline contains the following as mentioned before: ```groovy podTemplate(showRawYaml: false, imagePullSecrets: ['mysecret'], containers: [ containerTemplate(name: 'jnlp', image: "myregistry/jenkins/jnlp-slave:4.3-4-uid", args:...
@bitwiseman , I'm using Multibranch Pipeline
> SCMRevisionAction action = build.getAction(SCMRevisionAction) > > action.revision.author > action.revision.message > action.revision.hash Thanks @janisliepins , this result can also be achieved by running `sh "git --no-pager show -s --format='%an'" `...
is it possible to make client and server talk behind openshift ingress/route?
What if I need to use more repositories for dependencies resolution?
Thanks @yahavi . I forgot to mention that all the different repositories or groups require different grants and permissions. We’ re managing it dynamically by creating the right maven settings...
@yahavi , because grants and permissions are linked to ldap groups. You should create combinations for each project you’re supporting. Supposing that I m supporting 1000 projects and each project...
@yahavi any news on this issue? do you plan to fix it?