amoghrajesh commented on code in PR #59850:
URL: https://github.com/apache/airflow/pull/59850#discussion_r2650262388


##########
airflow-ctl/newsfragments/59850.significant.rst:
##########
@@ -0,0 +1,24 @@
+Remove ``airflowctl variables export`` command
+
+The ``airflowctl variables export`` command has been removed from the remote 
CLI. Variable export functionality is only available through the local Airflow 
CLI.
+
+**What changed:**
+
+- Removed ``airflowctl variables export`` command
+- ``airflowctl variables import`` remains available for importing variables 
from files

Review Comment:
   Do we need to mention this because it didn't change?



##########
scripts/ci/prek/check_airflowctl_command_coverage.py:
##########
@@ -70,6 +70,8 @@
     "dags delete",
     "dags get-import-error",
     "dags get-tags",
+    "pools export",  # Export only available via local Airflow CLI
+    "variables export",  # Export only available via local Airflow CLI

Review Comment:
   ```suggestion
       "pools export",
       "variables export",
   ```



##########
airflow-ctl/newsfragments/59850.significant.rst:
##########
@@ -0,0 +1,24 @@
+Remove ``airflowctl variables export`` command
+
+The ``airflowctl variables export`` command has been removed from the remote 
CLI. Variable export functionality is only available through the local Airflow 
CLI.
+
+**What changed:**
+
+- Removed ``airflowctl variables export`` command
+- ``airflowctl variables import`` remains available for importing variables 
from files
+
+**Migration:**
+
+Use the local Airflow CLI command for exporting variables:
+
+.. code-block:: bash
+
+   # Old (no longer available)
+   airflowctl variables export variables.json
+
+   # New (use local CLI)
+   airflow variables export variables.json
+
+* Types of change
+
+  * [x] CLI changes

Review Comment:
   You will have to have all options from the template and tick the right one.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to