This role only installs NGINX Management Suite (NMS).
Note: This role is still in active development. There may be unidentified issues and the role variables may change as development continues.
- NGINX Management Suite License Files
- NGINX Ansible Role (nginxinc.nginx)
Installing NMS requires the NMS certificate files to access the repository. Log in to MyF5 or follow the link in the trial activation email to download the NMS repo .crt and .key files:
- nginx-mgmt-suite-trial.key
- nginx-mgmt-suite-trial.crt
NOTE: Be sure to rename these files to nginx-repo.key
and nginx-repo.crt
, respectively.
NMS requires an NGINX instance, either NGINX OSS or NGINX Plus as a frontend only. This role handles this by defining a dependency to the NGINX Ansible Role, named nginxinc.nginx. Because of this dependance, you can set variables related to nginxinc.nginx when using this role. For example, nginx_type
is an nginxinc.nginx variable that can be set like how you would any other Ansible variable. So if your playbook defines nginx_type: plus
, this NMS role will call the nginxinc.nginx role which will install NGINX Plus. Refer to the Ansible Role NGINX for more details.
Main difference between using NGINX OSS or NGINX Plus depends on which Authentication Option you plan to use.
-
This role is developed and tested with maintained versions of Ansible core (above
2.12
). -
This role was developed and tested using nginxinc.nginx version 0.24.0.
-
When using this role, you will also need to install the following collections below. Additional information installing these collections is below in the Installation section.
- ansible.posix
- community.general
- community.crypto
- community.docker (Only required if you plan to use Molecule)
-
You will need to run this role as a root user using Ansible's
become
parameter. Make sure you have set up the appropriate permissions on your target hosts. -
Instructions on how to install Ansible can be found in the Ansible website.
- This role uses Jinja2 templates. Ansible core installs Jinja2 by default, but depending on your install and/or upgrade path, you might be running an outdated version. The minimum version of Jinja2 required for the role to properly function is
3.1
. - Instructions on how to install Jinja2 can be found in the Jinja2 website.
-
Molecule is used to test the various functionalities of the role. The recommended version of Molecule to test this role is
4.0.1
. -
Instructions on how to install Molecule can be found in the Molecule website. You will also need to install the Molecule Docker driver.
-
To run the Molecule tests, you must copy your NMS license to the role's
files/license
folder.You can alternatively add your NGINX Management Suite repository certificate and key to the local environment. Run the following commands to export these files as base64-encoded variables and execute the Molecule tests:
export NGINX_CRT=$( cat <path to your certificate file> | base64 ) export NGINX_KEY=$( cat <path to your key file> | base64 ) molecule test -s plus
- Create a yaml file, such as
requirements.yml
, with the following content below.--- roles: - name: nginxinc.nginx_management_suite version: 0.1.0 collections: - name: ansible.posix version: 1.5.1 - name: community.general version: 6.4.0 - name: community.crypto version: 2.11.0 - name: community.docker # Only required if you plan to use Molecule (see below) version: 3.4.2
- Run
ansible-galaxy install -r requirements.yml
to install this role along with the required collections. If you already have these installed but need to update to newer versions, useansible-galaxy install -fr requirements.yml
.
There is a couple methods if you want to use the latest edge from this role.
-
Use the following snippet in your
requirement.yml
.roles: - src: https://github.com/nginxinc/ansible-role-nginx-management-suite.git version: main
-
Use
git clone https://github.com/nginxinc/ansible-role-nginx-management-suite.git
to pull the latest edge commit of the role from GitHub.
This Ansible role supports all platforms supported by NGINX Management Suite:
Amazon Linux 2:
- any
CentOS:
- 7.4+
Debian:
- buster (10)
- bullseye (11)
Oracle Linux:
- 7.4+
- 8
Red Hat:
- 7.4+
- 8
- 9
Ubuntu:
- bionic (18.04)
- focal (20.04)
- jammy (22.04)
Note: You can also use this role to install NGINX Management Suite on compatible yet unsupported platforms at your own risk.
This role has multiple variables. The descriptions and defaults for all these variables can be found in the defaults/main/
folder in the following file:
Name | Description |
---|---|
main.yml |
NMS installation variables |
Similarly, descriptions and defaults for preset variables can be found in the vars/
folder in the following file:
Name | Description |
---|---|
main.yml |
List of supported NMS installation variables |
Working functional playbook examples can be found in the molecule/
folder in the following files:
Name | Description |
---|---|
default/converge.yml |
Install NGINX OSS and NMS |
plus/converge.yml |
Install NGINX Plus and NMS |
upgrade/converge.yml |
Upgrade NMS |
modules/converge.yml |
Install NGINX OSS and NMS & the API Connectivity Manager module |
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-management-suite
to nginxinc.nginx_management_suite
.
You can use this role to help count the number of NGINX Plus instance you have.
You will also need to install the following collection in order to use the example playbooks for counting NGINX Plus instances.
collections:
- name: https://github.com/TuxInvader/ansible_collection_nginx_management_suite.git
type: git
version: main
Example playbooks are also tested as a part of this role and can be found in the table below.
Name | Description |
---|---|
plus-count-ubuntu/converge.yml |
Install NMS and NGINX Agent on NGINX Plus instances using an Ubuntu NMS Host |
plus-count-rhel/converge.yml |
Install NMS and NGINX Agent on NGINX Plus instances using a RHEL NMS Host |
plus-count-upgrade/converge.yml |
Upgrade NMS and NGINX Agent on NGINX Plus instances using aN Ubuntu NMS Host |
You can find the Ansible NGINX Core collection of roles to install and configure NGINX Open Source, NGINX Plus, and NGINX App Protect here.
You can find the Ansible NGINX configuration role to configure NGINX here.
You can find the Ansible NGINX Unit role to install NGINX Unit here.
© F5, Inc. 2023