Jenkins version: 2.541.3
Job restriction plugin 242.v6edda_c9e4ca_f
Matrix Authorization Strategy Plugin 3.2.10
So i wan’t to restrict access for specific node linux to use it only for specific users, so i installed job restriction plugin and configured it in node:
and then if i wan’t to run pipeline as this user it scans all labels and can’t find label of node above
Started by user test-id
[Pipeline] Start of Pipeline
[Pipeline] node
Still waiting to schedule task
‘agent-windows’ doesn’t have label ‘cg-am-ios-agent’
‘agent-macos’ doesn’t have label ‘cg-am-ios-agent’
. . .
simple pipeline:
pipeline {
agent {
label ‘cg-am-ios-agent’
}
stages {
stage('Git checkout') {
steps {
script {
echo "test"
}
}
}
}
}
any ideas? user have full permission for this pipeline in configure → enable project-based security Do not inherit permission grant from other ACL’s

