Skip to content

Commit

Permalink
[patch] Allow FYRE provision without storage configuration (#1138)
Browse files Browse the repository at this point in the history
  • Loading branch information
durera authored Dec 12, 2023
1 parent e1473bf commit efd77d2
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions ibm/mas_devops/playbooks/ocp_fyre_provision.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
# requires for FIPS clusters
ocp_update_ciphers_for_semeru: True

fyre_config_storage: "{{ lookup('env', 'FYRE_CONFIG_STORAGE') | default('true', True) | bool }}"

pre_tasks:
# For the full set of supported environment variables refer to the playbook documentation
- name: Check for required environment variables
Expand All @@ -21,14 +23,15 @@

roles:
# 1. Provision the FYRE cluster
- ibm.mas_devops.ocp_provision
- name: ibm.mas_devops.ocp_provision

# 2. Login and verify the cluster is ready
- ibm.mas_devops.ocp_login
- ibm.mas_devops.ocp_verify
- name: ibm.mas_devops.ocp_login
- name: ibm.mas_devops.ocp_verify

# 3. Update the APIServer to custom for FIPS compatibility
- ibm.mas_devops.ocp_config
- name: ibm.mas_devops.ocp_config

# 4. Install OpenShift Container Storage
- ibm.mas_devops.ocs
- name: ibm.mas_devops.ocs
when: fyre_config_storage

0 comments on commit efd77d2

Please sign in to comment.