Skip to content

Commit

Permalink
[patch] set UDS_ACTION to install_suds in FIPS mode (#1022)
Browse files Browse the repository at this point in the history
  • Loading branch information
conradkao committed Sep 25, 2023
1 parent 84970bc commit 9bb8174
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ibm/mas_devops/roles/uds/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
uds_action: "{{ lookup('env', 'UDS_ACTION') | default('install', true) }}"
ocp_fips_enabled: "{{ lookup('env', 'OCP_FIPS_ENABLED') | default('false', true) | bool }}"
uds_action: "{{ lookup('env', 'UDS_ACTION') | default('install_suds' if ocp_fips_enabled else 'install', true) }}"

# UDS in-cluster installation
# -----------------------------------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions ibm/mas_devops/roles/uds/tasks/install/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
- name: "UDS Deployment details"
debug:
msg:
- "UDS Action ......................... {{uds_action}}"
- "UDS Namespace ...................... ibm-common-services"
- "UDS Storage Class .................. {{ uds_storage_class }}"
- "UDS Event Scheduler Frequency ...... {{ uds_event_scheduler_frequency }}"
Expand Down

0 comments on commit 9bb8174

Please sign in to comment.