kayobe/ansible/roles/cadvisor
zhulingjie 8be12b71d7 use include_tasks and import_playbook instead of include
include is marked as deprecated since ansible 2.4[0]

Switch to include_tasks or import_playbook as necessary

[0] https://docs.ansible.com/ansible/2.4/include_module.html#deprecated

Change-Id: Ia1b826ca08ae042eec80f8c495ab030a087d97ba
2019-01-18 12:22:38 +00:00
..
defaults Change reserved keyword 'action' to 'kayobe_action' 2018-05-21 16:00:57 +01:00
tasks use include_tasks and import_playbook instead of include 2019-01-18 12:22:38 +00:00
README.md roles/cadvisor: Added. 2018-01-23 12:25:20 +00:00

README.md

cAdvisor

This role can be used to configure cAdvisor running in a Docker container.

Requirements

The host executing the role has the following requirements:

  • Docker engine
  • Python docker >= 2.0.0

Role Variables

cadvisor_enabled: Whether the cAdvisor is enabled. Defaults to false. cadvisor_namespace: Docker image namespace. Defaults to cadvisor. cadvisor_image: Docker image name. cadvisor_tag: Docker image tag. Defaults to v0.28.3. cadvisor_image_full: Full docker image specification. cadvisor_restart_policy: Docker restart policy for cAdvisor container. Defaults to unless-stopped. cadvisor_restart_retries: Number of Docker restarts. Defaults to 10.

Dependencies

None

Example Playbook

The following playbook configures cAdvisor.

---
- hosts: cadvisor
  roles:
    - role: cadvisor

Author Information