kaxil commented on a change in pull request #6516: [AIRFLOW-5704] Improve Kind Kubernetes scripts for local testing URL: https://github.com/apache/airflow/pull/6516#discussion_r365487886
########## File path: breeze ########## @@ -82,15 +82,30 @@ TEST_TARGET="" # Holds docker compose command if the -d flag is used. DOCKER_COMPOSE_COMMAND="" +#extra options for Docker compose +EXTRA_DC_OPTIONS=() + # If true, the docker images are rebuilt locally. export AIRFLOW_CONTAINER_DOCKER_BUILD_NEEDED="false" # By default we only pull images if we do not have them locally. # This can be overridden by -p flag export AIRFLOW_CONTAINER_FORCE_PULL_IMAGES="false" +# Start airflow-testing image with all the dependencies +export AIRFLOW_CONTAINER_DEPS="true" + +# Do not start Kubernetes cluster by default +export ENABLE_KIND_CLUSTER="false" + +# Do not recreate Kubernetes cluster by default +export RECREATE_KIND_CLUSTER="false" + +# Do not stop Kubernetes cluster by default +export SDTOP_KIND_CLUSTER="false" Review comment: ```suggestion export STOP_KIND_CLUSTER="false" ``` ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
