github.com/niedbalski/juju@v0.0.0-20190215020005-8ff100488e47/acceptancetests/repository/xenial/jenkins-slave/README.md (about) 1 # Overview 2 3 This charm provisions a Jenkins slave to connect to a Jenkins master. 4 This is the companion to the Jenkins charm. 5 6 7 # Usage 8 9 To deploy a Jenkins slave you will also need to deploy the jenkins master 10 charm. This can be done as follows: 11 12 juju deploy jenkins 13 juju deploy -n 5 jenkins-slave 14 juju add-relation jenkins jenkins-slave 15 16 There are cases where you want to provision a specific machine that 17 provides specific resources for tests, such as CPU architecture or 18 network access. You can deploy the extra slave like this: 19 20 juju add-machine <special-machine-private-ip> 21 juju deploy --to <special-mabine-number> jenkins-slave ppc-slave 22 23 See the Jenkins charm for more details.