From 076f18cd116ded7bbc4125339abc0fbdd7d57124 Mon Sep 17 00:00:00 2001 From: desmax74 Date: Tue, 12 Nov 2024 12:47:27 +0100 Subject: [PATCH] tidy up readme Signed-off-by: desmax74 --- README.md | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) diff --git a/README.md b/README.md index d23d3a4..fa11c4a 100644 --- a/README.md +++ b/README.md @@ -247,53 +247,6 @@ Install the required Ansible collections by executing the following ansible-galaxy collection install -r requirements.yml ``` -## Use Cases - -See [using Ansible collections](https://docs.ansible.com/ansible/devel/user_guide/collections_using.html) for more details. - - - -1. Create an `inventory` file with a single node under the `trustification` group: - - ``` - [trustification] - - ``` - -2. Create an Ansible Playbook named `play.yml`, and configure with your relevant information: - - ```yaml - - name: Trustification - hosts: trustification - vars: - vars: - tpa_single_node_trustification_image: registry.redhat.io/rhtpa/rhtpa-trustification-service-rhel9: - tpa_single_node_guac_image: registry.redhat.io/rhtpa/rhtpa-guac-rhel9: - vars_files: - - vars/main.yml - tasks: - - name: Include TPA single node - ansible.builtin.include_role: - name: tpa_single_node # Use if deploying from Ansible Automation Hub. - ``` - > [!NOTE] - If running this Playbook from a locally-cloned Git repository, then replace the `redhat.trusted_profile_analyzer.tpa_single_node` value with `tpa_single_node`. - -3. Install the RHTPA Ansible collection. - - - If installing from Ansible Automation Hub, then run the following command: - - ```shell - ansible-playbook -i inventory play.yml - ``` - - - If running from a locally-cloned Git repository, then run the following command: - - ```shell - export ANSIBLE_ROLES_PATH="roles/" ; ansible-playbook -i inventory play.yml - ``` - - ## Contributing ## Support