semantic-release-bot 223ef1d177 chore(release): 0.4.5 [skip ci]
## [0.4.5](https://github.com/saltstack-formulas/keepalived-formula/compare/v0.4.4...v0.4.5) (2020-01-27)

### Bug Fixes

* **keepalived.conf.tmpl.jinja:** fix `has no attribute` error ([4391459](4391459df8)), closes [/freenode.logbot.info/saltstack-formulas/20200122#c3126298-c3126299](https://github.com//freenode.logbot.info/saltstack-formulas/20200122/issues/c3126298-c3126299)
* **release.config.js:** use full commit hash in commit link [skip ci] ([e9f7b11](e9f7b11db3))

### Continuous Integration

* **gemfile:** restrict `train` gem version until upstream fix [skip ci] ([a1a51d5](a1a51d5842))
* **kitchen:** use `debian-10-master-py3` instead of `develop` [skip ci] ([0bb4271](0bb4271c89))
* **kitchen:** use `develop` image until `master` is ready (`amazonlinux`) [skip ci] ([2758e8e](2758e8ebf3))
* **kitchen+travis:** upgrade matrix after `2019.2.2` release [skip ci] ([e638158](e6381581fa))
* **travis:** apply changes from build config validation [skip ci] ([4f492da](4f492dafff))
* **travis:** opt-in to `dpl v2` to complete build config validation [skip ci] ([cc7542a](cc7542a93f))
* **travis:** quote pathspecs used with `git ls-files` [skip ci] ([5e42eaa](5e42eaaa56))
* **travis:** run `shellcheck` during lint job [skip ci] ([47b3bce](47b3bce96b))
* **travis:** update `salt-lint` config for `v0.0.10` [skip ci] ([4d40216](4d40216754))
* **travis:** use `major.minor` for `semantic-release` version [skip ci] ([3e9bc91](3e9bc91558))
* **travis:** use build config validation (beta) [skip ci] ([2d42d93](2d42d93246))

### Documentation

* **contributing:** remove to use org-level file instead [skip ci] ([603176e](603176eec7))
* **readme:** update link to `CONTRIBUTING` [skip ci] ([01df0d0](01df0d0097))

### Performance Improvements

* **travis:** improve `salt-lint` invocation [skip ci] ([45a87c6](45a87c67fd))
2020-01-27 19:58:13 +00:00
..
2020-01-27 19:58:13 +00:00
2020-01-27 19:58:13 +00:00

.. _readme:

keepalived-formula
==================

|img_travis| |img_sr|

.. |img_travis| image:: https://travis-ci.com/saltstack-formulas/keepalived-formula.svg?branch=master
   :alt: Travis CI Build Status
   :scale: 100%
   :target: https://travis-ci.com/saltstack-formulas/keepalived-formula
.. |img_sr| image:: https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg
   :alt: Semantic Release
   :scale: 100%
   :target: https://github.com/semantic-release/semantic-release

Formula to set up and configure keepalived

.. contents:: **Table of Contents**

General notes
-------------

See the full `SaltStack Formulas installation and usage instructions
<https://docs.saltstack.com/en/latest/topics/development/conventions/formulas.html>`_.

If you are interested in writing or contributing to formulas, please pay attention to the `Writing Formula Section
<https://docs.saltstack.com/en/latest/topics/development/conventions/formulas.html#writing-formulas>`_.

If you want to use this formula, please pay attention to the ``FORMULA`` file and/or ``git tag``,
which contains the currently released version. This formula is versioned according to `Semantic Versioning <http://semver.org/>`_.

See `Formula Versioning Section <https://docs.saltstack.com/en/latest/topics/development/conventions/formulas.html#versioning>`_ for more details.

Contributing to this repo
-------------------------

**Commit message formatting is significant!!**

Please see `How to contribute <https://github.com/saltstack-formulas/.github/blob/master/CONTRIBUTING.rst>`_ for more details.

Available states
----------------

.. contents::
    :local:

``keepalived``
^^^^^^^^^^^^^^
Installs and configures the keepalived package.

``keepalived.package``
^^^^^^^^^^^^^^^^^^^^^^
Installs the keepalived package.

``keepalived.config``
^^^^^^^^^^^^^^^^^^^^^
This state manages the file ``keepalived.conf`` under ``/etc/keepalived`` (template found in "keepalived/files"). The configuration is populated by values in "keepalived/map.jinja" based on the package's default values (and RedHat, Debian, Suse and Arch family distribution specific values), which can then be overridden by values of the same name in pillar.

``keepalived.service``
^^^^^^^^^^^^^^^^^^^^^^
This state ensures that keepalived service is running.

Testing
-------

Linux testing is done with ``kitchen-salt``.

Requirements
^^^^^^^^^^^^

* Ruby
* Docker

.. code-block:: bash

   $ gem install bundler
   $ bundle install
   $ bin/kitchen test [platform]

Where ``[platform]`` is the platform name defined in ``kitchen.yml``,
e.g. ``debian-9-2019-2-py3``.

``bin/kitchen converge``
^^^^^^^^^^^^^^^^^^^^^^^^

Creates the docker instance and runs the ``keepalived`` main state, ready for testing.

``bin/kitchen verify``
^^^^^^^^^^^^^^^^^^^^^^

Runs the ``inspec`` tests on the actual instance.

``bin/kitchen destroy``
^^^^^^^^^^^^^^^^^^^^^^^

Removes the docker instance.

``bin/kitchen test``
^^^^^^^^^^^^^^^^^^^^

Runs all of the stages above in one go: i.e. ``destroy`` + ``converge`` + ``verify`` + ``destroy``.

``bin/kitchen login``
^^^^^^^^^^^^^^^^^^^^^

Gives you SSH access to the instance for manual testing.