ansible-roles/varnish
Mathieu Trossevin 956ecd4700
Replace the include module with include_tasks or import_tasks
The behaviour of the `include` module is badly defined (it try to choose
between statically importing the tasks and dynamically including them)
and can cause problems depending on any number of constraints (mostly if
it choose the wrong behaviour).

Replace it with the `import_tasks` (always statically import tasks) unless
the `include` is in a loop in which case we replace it with
`include_tasks` (always dynamically include tasks).
2022-03-30 16:40:44 +02:00
..
defaults varnish: add additional options 2022-01-12 13:04:22 +01:00
files/munin varnish: update munin plugin to work with recent varnish versions 2022-02-08 16:16:24 +01:00
handlers varnish: add a restart handler 2017-12-04 14:59:34 +01:00
meta Update Galaxy metadata (company, platforms and galaxy_tags) 2021-06-28 15:26:28 +02:00
tasks Replace the include module with include_tasks or import_tasks 2022-03-30 16:40:44 +02:00
templates varnish: add additional options 2022-01-12 13:04:22 +01:00
tests Add tests for many roles 2017-05-18 15:44:21 +02:00
.kitchen.yml Kitchen: Change base image to evolix/ansible 2017-06-02 08:38:08 -04:00
README.md Improve documentation 2017-01-05 18:22:06 +01:00

Varnish

Installation and basic configuration of Varnish

Tasks

Everything is in the tasks/main.yml file.

Variables

  • thread_pools : number of thread to use (default to number of vCPU)
  • malloc : amount of memory to allocate (default: 2G)