diff --git a/stack_orchestrator/deploy/deployment_create.py b/stack_orchestrator/deploy/deployment_create.py index 792d8e3d..5593c60b 100644 --- a/stack_orchestrator/deploy/deployment_create.py +++ b/stack_orchestrator/deploy/deployment_create.py @@ -835,9 +835,7 @@ def create_operation( # Copy from temp to deployment dir, excluding data volumes # and backing up changed files. # Exclude data/* to avoid touching user data volumes. - # Exclude config file to preserve deployment settings - # (XXX breaks passing config vars from spec) - exclude_patterns = ["data", "data/*", constants.config_file_name] + exclude_patterns = ["data", "data/*"] _safe_copy_tree( temp_dir, deployment_dir_path, exclude_patterns=exclude_patterns )