github.com/niedbalski/juju@v0.0.0-20190215020005-8ff100488e47/acceptancetests/repository/charms/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. It work with a standalone 5 Jenkins master or one managed by Juju 6 7 8 # Usage 9 10 To deploy a Jenkins slave you will also need to deploy the jenkins master 11 charm. This can be done as follows: 12 13 juju deploy jenkins 14 juju deploy -n 5 jenkins-slave 15 juju add-relation jenkins jenkins-slave 16 17 There are cases where you want to provision a specific machine that 18 provides specific resources for tests, such as CPU architecture or 19 network access. You can deploy the extra slave like this: 20 21 juju add-machine <special-machine-private-ip> 22 juju deploy --to <special-machine-number> jenkins-slave ppc64el-slave 23 24 See the Jenkins charm for more details.