From 3cd69821c0df48cd9bfd2a9fba35a16f918187ae Mon Sep 17 00:00:00 2001 From: Guido Grazioli Date: Mon, 10 Jan 2022 14:26:54 +0100 Subject: [PATCH] Bump version, document python3 netaddr dependency --- galaxy.yml | 2 +- roles/keycloak/README.md | 13 ++++++++----- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/galaxy.yml b/galaxy.yml index da9e019..0c106e8 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: middleware_automation name: keycloak -version: "0.1.4" +version: "0.1.5" readme: README.md authors: - Romain Pelisse diff --git a/roles/keycloak/README.md b/roles/keycloak/README.md index e076ce4..deff9da 100644 --- a/roles/keycloak/README.md +++ b/roles/keycloak/README.md @@ -9,6 +9,9 @@ Requirements This role requires the `python3-netaddr` library installed on the controller node. +* to install via yum/dnf: `dnf install python3-netaddr` +* or via pip: `pip install netaddr==0.8.0` + Role Defaults ------------- @@ -38,7 +41,7 @@ The following are a set of _required_ variables for the role: |`keycloak_admin_password`| Password for the administration console user account | -The following variables are _required_ only when keycloak_ha_enabled is True: +The following variables are _required_ only when `keycloak_ha_enabled` is True: | Variable | Description | Default | |:---------|:------------|:---------| @@ -53,7 +56,7 @@ The following variables are _required_ only when keycloak_ha_enabled is True: |`infinispan_trust_store_password`| Password for opening truststore | `changeit` | -The following variables are _required_ only when keycloak_db_enabled is True: +The following variables are _required_ only when `keycloak_db_enabled` is True: | Variable | Description | Default | |:---------|:------------|:---------| @@ -68,8 +71,8 @@ Dependencies The roles depends on: -* the redhat_csp_download role from [middleware_automation.redhat_csp_download](https://github.com/ansible-middleware/redhat-csp-download) collection -* the wildfly_driver role from [middleware_automation.wildfly](https://github.com/ansible-middleware/wildfly) collection +* the `redhat_csp_download` role from [middleware_automation.redhat_csp_download](https://github.com/ansible-middleware/redhat-csp-download) collection +* the `wildfly_driver` role from [middleware_automation.wildfly](https://github.com/ansible-middleware/wildfly) collection Example Playbook @@ -100,4 +103,4 @@ Author Information ------------------ * [Guido Grazioli](https://github.com/guidograzioli) -* [Romain Pelisse](https://github.com/rpelisse) \ No newline at end of file +* [Romain Pelisse](https://github.com/rpelisse)