- website is changing from jekyll to hugo
- branch
master:website/docs
becomes branchhugo-migration:website/content/en/docs
- CDRs
I hereby claim:
To claim this, I am signing this object:
{ | |
"name": "bridge", | |
"type": "bridge", | |
"bridge": "docker-sys", | |
"isDefaultGateway": true, | |
"ipMasq": true, | |
"hairpinMode": true, | |
"ipam": { | |
"type": "host-local", | |
"subnet": "10.255.12.1/25" |
rancher: | |
system_docker: | |
extra_args: | |
- "--bip=10.255.48.1/24" | |
docker: | |
engine: docker-1.13.1 | |
live_restore: true | |
selinux_enabled: true | |
storage_driver: overlay2 | |
extra_args: |
#!/usr/bin/env groovy | |
/* | |
Fairly self explanatory if you look at the options in the UI. | |
Main thing to note is the JENKINS_MESOS_SLAVE_<number>. Anything with the same | |
number will be associated together option wise. | |
For things like JENKINS_MESOS_SLAVE_<number>_VOL_<number> The trailing | |
number just signifies more than one. | |
--Available Environment Variables -- |
//groovy.init | |
import org.jenkinsci.plugins.mesos.* | |
def slaveVols = [ | |
new MesosSlaveInfo.Volume( | |
containerPath="/usr/bin/docker", | |
hostPath="/usr/bin/docker", | |
readOnly=true |