Skip to content

Commit

Permalink
Better description on how to build image for k8s (apache#44492)
Browse files Browse the repository at this point in the history
  • Loading branch information
potiuk authored Nov 30, 2024
1 parent 0d6d5f2 commit 693cdd4
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions dev/breeze/src/airflow_breeze/commands/kubernetes_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit 693cdd4

Please sign in to comment.