From 4a28e1914e62e3ee4bb79fb58296eb3d87691a2f Mon Sep 17 00:00:00 2001 From: Guido Grazioli Date: Wed, 19 Jan 2022 17:21:05 +0100 Subject: [PATCH] Open jgroups port in firewall --- .github/workflows/ci.yml | 1 - roles/keycloak/README.md | 1 + roles/keycloak/tasks/firewalld.yml | 3 ++- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d2ceab8..2a1acba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,6 @@ jobs: - name: Run molecule test run: molecule test --all working-directory: ./ansible_collections/middleware_automation/keycloak - env: PY_COLORS: '1' ANSIBLE_FORCE_COLOR: '1' diff --git a/roles/keycloak/README.md b/roles/keycloak/README.md index 81480e0..93a1a8f 100644 --- a/roles/keycloak/README.md +++ b/roles/keycloak/README.md @@ -193,3 +193,4 @@ Author Information * [Guido Grazioli](https://github.com/guidograzioli) * [Romain Pelisse](https://github.com/rpelisse) +* [Pavan Kumar Motaparthi](https://github.com/motaparthipavankumar) diff --git a/roles/keycloak/tasks/firewalld.yml b/roles/keycloak/tasks/firewalld.yml index d3a8a0c..8757678 100644 --- a/roles/keycloak/tasks/firewalld.yml +++ b/roles/keycloak/tasks/firewalld.yml @@ -12,7 +12,7 @@ enabled: yes state: started -- name: Configure firewall for jdg ports +- name: Configure firewall for keycloak ports become: yes firewalld: port: "{{ item }}" @@ -24,4 +24,5 @@ - "{{ keycloak_https_port }}/tcp" - "{{ keycloak_management_http_port }}/tcp" - "{{ keycloak_management_https_port }}/tcp" + - "7600/tcp" - "8009/tcp"