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

potiuk pushed a commit to branch v2-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 91b59e90c815fc4dfb2cd57f85d9515f893273e1
Author: Ephraim Anierobi <[email protected]>
AuthorDate: Wed May 5 05:41:40 2021 +0100

    Add --executor option to breeze kind-cluster deploy command (#15661)
    
    This change will enable us easily deploy airflow to kubernetes cluster
    and test it using different executors.
    Example usage:
       ./breeze kind-cluster --executor CeleryExecutor deploy
    
    (cherry picked from commit e47f7e42b632ad78a204531e385ec09bcce10816)
---
 scripts/ci/libraries/_kind.sh | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/scripts/ci/libraries/_kind.sh b/scripts/ci/libraries/_kind.sh
index 085dfac..d5adadf 100644
--- a/scripts/ci/libraries/_kind.sh
+++ b/scripts/ci/libraries/_kind.sh
@@ -140,6 +140,10 @@ function kind::perform_kind_cluster_operation() {
     echo "Kubernetes mode: ${KUBERNETES_MODE}"
     echo
 
+    echo
+    echo "Executor: ${EXECUTOR}"
+    echo
+
     if [[ ${operation} == "status" ]]; then
         if [[ ${all_clusters} == *"${KIND_CLUSTER_NAME}"* ]]; then
             echo

Reply via email to