Skip to content

Commit

Permalink
+= -> append
Browse files Browse the repository at this point in the history
Signed-off-by: Piotr Pawłowski <[email protected]>
  • Loading branch information
pawloch00 committed Nov 4, 2024
1 parent e18f696 commit 8b2940f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xpk/commands/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,10 +507,10 @@ def run_gke_cluster_create_command(

addons = []
if args.enable_gcsfuse_csi_driver:
addons += 'GcsFuseCsiDriver'
addons.append('GcsFuseCsiDriver')

if args.enable_gcpfilestore_csi_driver:
addons += 'GcpFilestoreCsiDriver'
addons.append('GcpFilestoreCsiDriver')

if len(addons) > 0:
addons_str = ','.join(addons)
Expand Down

0 comments on commit 8b2940f

Please sign in to comment.