How to change Jenkins Node details through python jenkinsapi

775 Views Asked by At

I have read lots of Jenkins API documents. But I didn't get any way to changes the details of the Jenkins node using Python API. basically, these are the fields I want to change:

1) # of executors 2) Labels 3) Host

enter image description here

1

There are 1 best solutions below

3
On
import jenkins.model.*
import hudson.model.*
import hudson.slaves.*
import hudson.plugins.sshslaves.*
import java.util.ArrayList;
import hudson.slaves.EnvironmentVariablesNodeProperty.Entry;

  Slave slave = new DumbSlave(
                    "agent-node","Agent node description",
                    "/home/jenkins",
                    "1",
                    Node.Mode.NORMAL,
                    "agent-node-label",
                    new SSHLauncher("agenNode",22,"user","password","","","","",""),
                    new RetentionStrategy.Always(),
                    new LinkedList())
  Jenkins.instance.addNode(slave)