mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-06 10:50:31 -07:00
get rid of rhn_ids dict
This commit is contained in:
parent
9157f83f96
commit
2054082b40
3 changed files with 15 additions and 13 deletions
|
@ -273,7 +273,7 @@ argument_specs:
|
||||||
description: "Red Hat Single Sign-On version"
|
description: "Red Hat Single Sign-On version"
|
||||||
type: "str"
|
type: "str"
|
||||||
sso_rhn_id:
|
sso_rhn_id:
|
||||||
default: "{{ sso_rhn_ids[sso_version].id }}"
|
default: "101971"
|
||||||
description: "Customer Portal product ID for Red Hat SSO"
|
description: "Customer Portal product ID for Red Hat SSO"
|
||||||
type: "str"
|
type: "str"
|
||||||
sso_archive:
|
sso_archive:
|
||||||
|
@ -316,7 +316,15 @@ argument_specs:
|
||||||
default: "Red Hat Single Sign-On"
|
default: "Red Hat Single Sign-On"
|
||||||
description: "systemd description for Red Hat Single Sign-On"
|
description: "systemd description for Red Hat Single Sign-On"
|
||||||
type: "str"
|
type: "str"
|
||||||
|
sso_patch_version:
|
||||||
|
default: "7.5.3"
|
||||||
|
description: "Red Hat Single Sign-On latest cumulative patch version"
|
||||||
|
type: "str"
|
||||||
sso_patch_bundle:
|
sso_patch_bundle:
|
||||||
default: "rh-sso-{{ sso_rhn_ids[sso_version].latest_cp.v }}-patch.zip"
|
default: "rh-sso-{{ sso_patch_version }}-patch.zip"
|
||||||
description: "Red Hat SSO patch archive filename"
|
description: "Red Hat SSO patch archive filename"
|
||||||
type: "str"
|
type: "str"
|
||||||
|
sso_patch_rhn_id:
|
||||||
|
default: "104738"
|
||||||
|
description: "Customer Portal product ID for Red Hat SSO latest cumulative patch"
|
||||||
|
type: "str"
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
- name: Perform download from RHN
|
- name: Perform download from RHN
|
||||||
middleware_automation.redhat_csp_download.redhat_csp_download:
|
middleware_automation.redhat_csp_download.redhat_csp_download:
|
||||||
url: "{{ keycloak_rhn_url }}{{ sso_rhn_ids[keycloak_version].latest_cp.id }}"
|
url: "{{ keycloak_rhn_url }}{{ sso_patch_rhn_id }}"
|
||||||
dest: "{{ local_path.stat.path }}/{{ sso_patch_bundle }}"
|
dest: "{{ local_path.stat.path }}/{{ sso_patch_bundle }}"
|
||||||
username: "{{ rhn_username }}"
|
username: "{{ rhn_username }}"
|
||||||
password: "{{ rhn_password }}"
|
password: "{{ rhn_password }}"
|
||||||
|
@ -48,9 +48,9 @@
|
||||||
when:
|
when:
|
||||||
- cli_result is defined
|
- cli_result is defined
|
||||||
- cli_result.stdout is defined
|
- cli_result.stdout is defined
|
||||||
- sso_rhn_ids[keycloak_version].latest_cp.v not in cli_result.stdout
|
- sso_patch_version not in cli_result.stdout
|
||||||
block:
|
block:
|
||||||
- name: "Apply patch {{ sso_rhn_ids[keycloak_version].latest_cp.v }} to server"
|
- name: "Apply patch {{ sso_patch_version }} to server"
|
||||||
ansible.builtin.include_tasks: rhsso_cli.yml
|
ansible.builtin.include_tasks: rhsso_cli.yml
|
||||||
vars:
|
vars:
|
||||||
query: "patch apply {{ patch_archive }}"
|
query: "patch apply {{ patch_archive }}"
|
||||||
|
@ -78,10 +78,10 @@
|
||||||
- name: "Verify installed patch version"
|
- name: "Verify installed patch version"
|
||||||
ansible.builtin.assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- sso_rhn_ids[keycloak_version].latest_cp.v not in cli_result.stdout
|
- sso_patch_version not in cli_result.stdout
|
||||||
fail_msg: "Patch installation failed"
|
fail_msg: "Patch installation failed"
|
||||||
success_msg: "Patch installation successful"
|
success_msg: "Patch installation successful"
|
||||||
|
|
||||||
- name: "Skipping patch"
|
- name: "Skipping patch"
|
||||||
ansible.builtin.debug:
|
ansible.builtin.debug:
|
||||||
msg: "Latest cumulative patch {{ sso_rhn_ids[keycloak_version].latest_cp.v }} already installed, skipping patch installation."
|
msg: "Latest cumulative patch {{ sso_patch_version }} already installed, skipping patch installation."
|
||||||
|
|
|
@ -1,11 +1,5 @@
|
||||||
---
|
---
|
||||||
# internal variables below
|
# internal variables below
|
||||||
sso_rhn_ids:
|
|
||||||
'7.5.0': # noqa vars_in_vars_files_have_valid_names
|
|
||||||
id: '101971'
|
|
||||||
latest_cp:
|
|
||||||
id: '103836'
|
|
||||||
v: '7.5.1'
|
|
||||||
|
|
||||||
# locations
|
# locations
|
||||||
keycloak_url: "http://{{ keycloak_host }}:{{ keycloak_http_port }}"
|
keycloak_url: "http://{{ keycloak_host }}:{{ keycloak_http_port }}"
|
||||||
|
|
Loading…
Add table
Reference in a new issue