You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue at client install when deploying client's certificates using the ansible scripts.
The skipping suggests that when: mas_manual_cert_mgmt == True is false. mas_manual_cert_mgmt: "{{ lookup('env', 'MAS_MANUAL_CERT_MGMT') | default(False, true) }}"
When running it with export MAS_MANUAL_CERT_MGMT=true it fails, only with 'True' (captal T) it works well. This is not boolean, it's String comparison.
Issue at client install when deploying client's certificates using the ansible scripts.
The skipping suggests that when:
mas_manual_cert_mgmt == True
is false.mas_manual_cert_mgmt: "{{ lookup('env', 'MAS_MANUAL_CERT_MGMT') | default(False, true) }}"
When running it with
export MAS_MANUAL_CERT_MGMT=true
it fails, only with 'True' (captal T) it works well. This is not boolean, it's String comparison.ansible-devops/ibm/mas_devops/roles/suite_certs/tasks/run.yml
Line 58 in 5b70f23
In other scripts it is the other way around, as in
ansible-devops/ibm/mas_devops/playbooks/oneclick_add_manage.yml
Line 100 in 5b70f23
when: install_cp4d_platform == true
Please correct capital writings in the scripts to avoid interruptions during installs and bring it in line to the standards.
The text was updated successfully, but these errors were encountered: