Skip to content

Commit

Permalink
fix(cli): ENV_VARS_FROM_SECRET default value (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
hussein-awala authored Feb 26, 2024
1 parent 9267703 commit 3f7fcb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spark_on_k8s/cli/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def validate_list_option(ctx, param, value):
("--driver-env-vars-from-secrets",),
type=str,
callback=validate_list_option,
default=Configuration.SPARK_ON_K8S_DRIVER_ENV_VARS_FROM_SECRET,
default=",".join(Configuration.SPARK_ON_K8S_DRIVER_ENV_VARS_FROM_SECRET),
show_default=True,
help="Secrets to load environment variables from for the driver. Comma-separated list of secret names.",
)

0 comments on commit 3f7fcb7

Please sign in to comment.