Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
Signed-off-by: desmax74 <[email protected]>
  • Loading branch information
desmax74 committed Sep 25, 2024
1 parent 42ea459 commit ee15692
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Utilize the steps below to understand how to setup and execute the provisioning.

## Prerequisites

A RHEL 9.2+ server should be used to run the Trustification components.
A RHEL 9.3+ server should be used to run the Trustification components.

Ansible must be installed and configured on a control node that will be used to perform the automation.

Expand All @@ -49,7 +49,7 @@ An installation of RH SSO/Keycloak/AWS Cognito must be provided to allow for int

#### https://docs.ansible.com/ansible/2.9/scenario_guides/guide_vagrant.html

In order to deploy Trustification on a RHEL 9.2+ VM:
In order to deploy Trustification on a RHEL 9.3+ VM:

1. Create an `inventory.ini` file in the project with a single VM in the `trustification` group:

Expand Down
4 changes: 2 additions & 2 deletions roles/tpa_single_node/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
- name: Set a variable if is not a Rhel as expected
- name: Set a variable about Rhel
ansible.builtin.set_fact:
rhel: false

Expand All @@ -9,7 +9,7 @@
when:
- ansible_facts['distribution'] == 'RedHat'
- ansible_facts['distribution_major_version'] == '9'
- ansible_facts['distribution_minor_version'] == '2'
- ansible_facts['distribution_version'] == '9.3'

- name: Install Operating System Components
ansible.builtin.include_tasks: os.yml
Expand Down
4 changes: 2 additions & 2 deletions roles/tpa_single_node/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ tpa_single_node_pg_user_passwd: guac1234
tpa_single_node_pg_ssl_mode: disable

# Storage Service (S3 or Minio)
tpa_single_node_storage_endpoint: # <Enter minio storage endpoint, For AWS this field is not necessary>
tpa_single_node_storage_region: # <AWS S3 Storage region> # For Minio just keep us-west-1
tpa_single_node_storage_endpoint: https://minio-route-ansible-test.apps.tpa1.tpa.rhocf-dev.net # <Enter minio storage endpoint, For AWS this field is not necessary>

Check failure on line 22 in roles/tpa_single_node/vars/main.yml

View workflow job for this annotation

GitHub Actions / ansible-lint

yaml[line-length]

Line too long (164 > 160 characters)
tpa_single_node_storage_region: us-west-1 # <AWS S3 Storage region> # For Minio just keep us-west-1
tpa_single_node_storage_access_key: "{{ lookup('env', 'TPA_STORAGE_ACCESS_KEY') }}"
tpa_single_node_storage_secret_key: "{{ lookup('env', 'TPA_STORAGE_SECRET_KEY') }}"
tpa_single_node_storage_bombastic_bucket: bombastic-default # <bombastic storage bucket name>
Expand Down

0 comments on commit ee15692

Please sign in to comment.