ceph-ansible/roles/ceph-container-common
Guillaume Abrioux 3e262e072b containers: use --cpus instead --cpu-quota
When using docker 1.13.1, the current condition:

```
{% if (container_binary == 'docker' and ceph_docker_version.split('.')[0] is version_compare('13', '>=')) or container_binary == 'podman' -%}
```

is wrong because it compares the first digit (1) whereas it should
compare the second one.
It means we always use `--cpu-quota` although documentation recommend
using `--cpus` when docker version is 1.13.1 or higher.

From the doc:
> --cpu-quota=<value>	Impose a CPU CFS quota on the container. The number of
> microseconds per --cpu-period that the container is limited to before
> throttled. As such acting as the effective ceiling.
> If you use Docker 1.13 or higher, use --cpus instead.

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
2020-01-16 13:51:43 -05:00
..
defaults docker-common: rename role 2018-11-12 10:51:48 +01:00
meta allow using ansible 2.8 2019-04-17 16:57:37 +02:00
tasks containers: use --cpus instead --cpu-quota 2020-01-16 13:51:43 -05:00
README.md roles: introduce `ceph-container-engine` role 2019-05-22 13:02:10 +02:00

README.md

Ansible role: ceph-container-common

Documentation is available at http://docs.ceph.com/ceph-ansible/.