Skip to content

Commit

Permalink
fix: Fix manila csi config (#254)
Browse files Browse the repository at this point in the history
Co-authored-by: okozachenko1203 <[email protected]>
  • Loading branch information
okozachenko1203 and okozachenko1203 authored Nov 16, 2023
1 parent d5548a0 commit 867efdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion magnum_cluster_api/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def generate_manila_csi_cloud_config(
"os-applicationCredentialSecret": cloud_config["clouds"]["default"]["auth"][
"application_credential_secret"
],
"os-TLSInsecure": {"false" if CONF.drivers.verify_ca else "true"}
"os-TLSInsecure": ("false" if CONF.drivers.verify_ca else "true")
if cloud_config["clouds"]["default"]["verify"]
else "true",
"os-certAuthorityPath": "/etc/config/ca.crt",
Expand Down

0 comments on commit 867efdb

Please sign in to comment.