This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 693cdd46a57 Better description on how to build image for k8s (#44492)
693cdd46a57 is described below

commit 693cdd46a5781443ff5c839814343156b2fc0c40
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sat Nov 30 15:29:59 2024 +0100

    Better description on how to build image for k8s (#44492)
---
 dev/breeze/src/airflow_breeze/commands/kubernetes_commands.py | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/dev/breeze/src/airflow_breeze/commands/kubernetes_commands.py 
b/dev/breeze/src/airflow_breeze/commands/kubernetes_commands.py
index 2f027d5ad97..d60289e4612 100644
--- a/dev/breeze/src/airflow_breeze/commands/kubernetes_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/kubernetes_commands.py
@@ -974,8 +974,15 @@ def configure_cluster(
             output=None,
         )
         if return_code == 0:
-            get_console().print("\n[warning]NEXT STEP:[/][info] You might now 
build your k8s image by:\n")
-            get_console().print("\nbreeze k8s build-k8s-image\n")
+            get_console().print(
+                "\n[warning]NEXT STEP:[/][info] You might now build your k8s 
image "
+                "with all latest dependencies:\n"
+            )
+            get_console().print("\n breeze k8s build-k8s-image 
--rebuild-base-image\n")
+            get_console().print(
+                "\n[info]Later you can build image without 
--rebuild-base-image until "
+                "airflow dependencies change (to speed up rebuilds).\n"
+            )
         sys.exit(return_code)
 
 

Reply via email to