ansible-role-nginx/README.md

190 lines
7.4 KiB
Markdown
Raw Normal View History

2018-01-10 23:40:01 +01:00
[![Ansible Galaxy](https://img.shields.io/badge/galaxy-nginxinc.nginx-5bbdbf.svg)](https://galaxy.ansible.com/nginxinc/nginx)
2020-12-22 19:13:18 +01:00
[![Molecule CI/CD](https://github.com/nginxinc/ansible-role-nginx/workflows/Molecule%20CI/CD/badge.svg)](https://github.com/nginxinc/ansible-role-nginx/actions)
2020-09-30 21:39:19 +02:00
[![License](https://img.shields.io/badge/License-Apache--2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
# 👾 *Help make the NGINX Ansible role better by participating in our [survey](https://forms.office.com/Pages/ResponsePage.aspx?id=L_093Ttq0UCb4L-DJ9gcUKLQ7uTJaE1PitM_37KR881UM0NCWkY5UlE5MUYyWU1aTUcxV0NRUllJSC4u)!* 👾
# Ansible NGINX Role
2018-01-10 23:40:01 +01:00
2020-11-13 21:57:28 +01:00
This role installs NGINX Open Source, NGINX Plus, or the NGINX Amplify agent on your target host.
2018-01-10 23:40:01 +01:00
**Note:** This role is still in active development. There may be unidentified issues and the role variables may change as development continues.
2020-09-30 21:39:19 +02:00
## Requirements
2018-01-10 23:40:01 +01:00
2020-09-30 21:39:19 +02:00
### Ansible
2019-11-29 04:32:17 +01:00
* This role is developed and tested with [maintained](https://docs.ansible.com/ansible/devel/reference_appendices/release_and_maintenance.html) versions of Ansible core (above `2.11`) and Ansible (above `2.9.10`).
* When using Ansible base, you will also need to install the following collections:
```yaml
---
collections:
- name: community.general
2021-08-18 22:30:54 +02:00
version: 3.5.0
- name: ansible.posix
2021-03-24 17:29:53 +01:00
version: 1.2.0
```
**Note:** You can alternatively install the Ansible community distribution (what is known as the "old" Ansible) if you don't want to manage individual collections.
* Instructions on how to install Ansible can be found in the [Ansible website](https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html#upgrading-ansible-from-version-2-9-and-older-to-version-2-10-or-later).
### Jinja2
* This role uses Jinja2 templates. Ansible base installs Jinja2 by default, but depending on your install and/or upgrade path, you might be running an outdated version of Jinja2. The minimum version of Jinja2 required for the role to properly function is `2.11`.
* Instructions on how to install Jinja2 can be found in the [Jinja2 website](https://jinja.palletsprojects.com/en/2.11.x/intro/#installation).
2020-09-30 21:39:19 +02:00
### Molecule
* Molecule is used to test the various functionalities of the role. The recommended version of Molecule to test this role is `3.3`.
2020-09-30 21:39:19 +02:00
* Instructions on how to install Molecule can be found in the [Molecule website](https://molecule.readthedocs.io/en/latest/installation.html).
2020-09-30 21:39:19 +02:00
## Installation
2020-08-20 12:54:09 +02:00
2020-09-30 21:39:19 +02:00
### Ansible Galaxy
2018-01-10 23:40:01 +01:00
2021-04-28 13:23:22 +02:00
Use `ansible-galaxy install nginxinc.nginx` to install the latest stable release of the role on your system. Alternatively, if you have already installed the role, use `ansible-galaxy install -f nginxinc.nginx` to update the role to the latest release.
2020-09-30 21:39:19 +02:00
### Git
2018-01-10 23:40:01 +01:00
Use `git clone https://github.com/nginxinc/ansible-role-nginx.git` to pull the latest edge commit of the role from GitHub.
2020-09-30 21:39:19 +02:00
## Platforms
2020-11-13 21:57:28 +01:00
The NGINX Ansible role supports all platforms supported by [NGINX Open Source](https://nginx.org/en/linux_packages.html), [NGINX Plus](https://docs.nginx.com/nginx/technical-specs/), and the [NGINX Amplify agent](https://github.com/nginxinc/nginx-amplify-doc/blob/master/amplify-faq.md#21-what-operating-systems-are-supported):
2018-01-10 23:40:01 +01:00
2020-09-30 21:39:19 +02:00
### NGINX Open Source
2018-01-10 23:40:01 +01:00
```yaml
Alpine:
- 3.10
- 3.11
- 3.12
- 3.13
CentOS:
2020-09-15 21:27:06 +02:00
- 7.4+
- 8
Debian:
- buster
2020-09-15 21:27:06 +02:00
Red Hat:
- 7.4+
- 8
SUSE/SLES:
- 12
- 15
Ubuntu:
- xenial
- bionic
- focal
2021-01-20 18:52:28 +01:00
- groovy
```
2018-01-10 23:40:01 +01:00
2020-09-30 21:39:19 +02:00
### NGINX Plus
2018-01-10 23:40:01 +01:00
```yaml
Alpine:
- 3.10
- 3.11
- 3.12
- 3.13
Amazon Linux:
- 2018.03
Amazon Linux 2:
- any
CentOS:
- 7.4+
- 8
Debian:
- buster
FreeBSD:
- 11.2+
2021-01-20 18:52:28 +01:00
- 12.1+
Oracle Linux:
- 7.4+
2020-09-15 21:27:06 +02:00
Red Hat:
- 7.4+
- 8
SUSE/SLES:
- 12
- 15
Ubuntu:
- xenial
- bionic
- focal
2021-01-20 18:52:28 +01:00
- groovy
```
2018-04-09 23:22:13 +02:00
2020-09-30 21:39:19 +02:00
### NGINX Amplify Agent
```yaml
Amazon Linux:
- 2017.09
CentOS:
- 7
Debian:
- jessie
- stretch
2020-09-15 21:27:06 +02:00
Red Hat:
- 7
2020-07-30 12:47:08 +02:00
Ubuntu:
- xenial
- bionic
- focal
```
**Note:** You can also use this role to compile NGINX Open Source from source, install NGINX Open Source on compatible yet unsupported platforms, or install NGINX Open Source on BSD systems at your own risk.
2020-09-30 21:39:19 +02:00
## Role Variables
2018-01-10 23:40:01 +01:00
2020-09-30 21:39:19 +02:00
This role has multiple variables. The descriptions and defaults for all these variables can be found in the **[`defaults/main/`](https://github.com/nginxinc/ansible-role-nginx/blob/main/defaults/main/)** folder in the following files:
2018-01-10 23:40:01 +01:00
2020-09-30 21:39:19 +02:00
|Name|Description|
|----|-----------|
|**[`main.yml`](https://github.com/nginxinc/ansible-role-nginx/blob/main/defaults/main/main.yml)**|NGINX installation variables|
|**[`amplify.yml`](https://github.com/nginxinc/ansible-role-nginx/blob/main/defaults/main/amplify.yml)**|NGINX Amplify agent installation variables|
|**[`linux.yml`](https://github.com/nginxinc/ansible-role-nginx/blob/main/defaults/main/linux.yml)**|Linux installation variables|
|**[`bsd.yml`](https://github.com/nginxinc/ansible-role-nginx/blob/main/defaults/main/bsd.yml)**|BSD installation variables|
2020-09-30 21:39:19 +02:00
Similarly, descriptions and defaults for preset variables can be found in the **[`vars/`](https://github.com/nginxinc/ansible-role-nginx/blob/main/vars/)** folder in the following files:
2020-09-08 00:44:54 +02:00
2020-09-30 21:39:19 +02:00
|Name|Description|
|----|-----------|
|**[`main.yml`](https://github.com/nginxinc/ansible-role-nginx/blob/main/vars/main.yml)**|List of supported NGINX platforms and modules|
2020-09-08 00:44:54 +02:00
2020-09-30 21:39:19 +02:00
## Example Playbooks
2018-04-09 23:22:13 +02:00
2021-03-29 13:47:02 +02:00
Working functional playbook examples can be found in the **[`molecule/`](https://github.com/nginxinc/ansible-role-nginx/blob/main/molecule/)** folder in the following files:
2018-04-09 23:22:13 +02:00
2020-09-30 21:39:19 +02:00
|Name|Description|
|----|-----------|
2021-03-29 13:47:02 +02:00
|**[`default/converge.yml`](https://github.com/nginxinc/ansible-role-nginx/blob/main/molecule/default/converge.yml)**|Install a specific version of NGINX and set up logrotate|
|**[`module/converge.yml`](https://github.com/nginxinc/ansible-role-nginx/blob/main/molecule/module/converge.yml)**|Install various NGINX supported modules|
|**[`plus/converge.yml`](https://github.com/nginxinc/ansible-role-nginx/blob/main/molecule/plus/converge.yml)**|Install NGINX Plus and various NGINX Plus supported modules|
|**[`source/converge.yml`](https://github.com/nginxinc/ansible-role-nginx/blob/main/molecule/source/converge.yml)**|Install NGINX from source|
2018-01-10 23:40:01 +01:00
2020-06-04 13:05:38 +02:00
Do note that if you install this repository via Ansible Galaxy, you will have to replace the role variable in the sample playbooks from `ansible-role-nginx` to `nginxinc.nginx`.
2018-01-10 23:40:01 +01:00
2020-09-30 21:39:19 +02:00
## Other NGINX Ansible Collections and Roles
You can find the Ansible NGINX Core collection of roles to install and configure NGINX Open Source, NGINX Plus, and NGINX App Protect [here](https://github.com/nginxinc/ansible-collection-nginx).
2020-09-30 21:39:19 +02:00
You can find the Ansible NGINX configuration role to configure NGINX [here](https://github.com/nginxinc/ansible-role-nginx-config).
2020-08-20 12:54:09 +02:00
2020-09-30 21:39:19 +02:00
You can find the Ansible NGINX App Protect role to install and configure NGINX App Protect [here](https://github.com/nginxinc/ansible-role-nginx-app-protect).
2020-08-19 18:39:17 +02:00
2020-09-30 21:39:19 +02:00
You can find the Ansible NGINX Controller collection of roles to install and configure NGINX Controller [here](https://github.com/nginxinc/ansible-collection-nginx_controller).
2020-09-30 21:39:19 +02:00
You can find the Ansible NGINX Unit role to install NGINX Unit [here](https://github.com/nginxinc/ansible-role-nginx-unit).
2020-06-04 13:05:38 +02:00
2020-09-30 21:39:19 +02:00
## License
2018-01-10 23:40:01 +01:00
2020-09-09 16:10:42 +02:00
[Apache License, Version 2.0](https://github.com/nginxinc/ansible-role-nginx/blob/main/LICENSE)
2018-01-10 23:40:01 +01:00
2020-09-30 21:39:19 +02:00
## Author Information
2018-01-10 23:40:01 +01:00
[Alessandro Fael Garcia](https://github.com/alessfg)
[Grzegorz Dzien](https://github.com/gdzien)
2018-01-10 23:40:01 +01:00
[Tom Gamull](https://github.com/magicalyak)
© [F5 Networks, Inc.](https://www.f5.com/) 2018 - 2021