This repository has been archived by the owner on Nov 8, 2019. It is now read-only.
v0.1.5 - Static IP Requesting with Labels, and libcalico update
This release updates calico-mesos to use the latest libcalico, restoring compatibility with the latest calico-node. Additionally, we've added label parsing, allowing users to request a static IP address for their task by providing labels in their app definition. For example, to request an app with an IP Address of 192.168.2.1
:
{
"id":"/calico-apps",
"apps": [
{
"id": "hello-world-1",
"cmd": "ip addr && sleep 30",
"cpus": 0.1,
"mem": 64.0,
"ipAddress": {
"groups": ["my-group-1"],
"labels": {
"ipv4_addrs": "['192.168.2.1']"
}
}
}
]
}
PRs in this release-
#65 - Static IP Request
#61 - Update libcalico
Dependencies
For installation guides, unit files, and Dockerfiles, see calico-mesos-deployments