diff --git a/breeze-complete b/breeze-complete index a12876c969144..389d18f64d439 100644 --- a/breeze-complete +++ b/breeze-complete @@ -28,7 +28,7 @@ _breeze_allowed_integrations="cassandra kerberos mongo openldap pinot rabbitmq r _breeze_allowed_kubernetes_modes="image" _breeze_allowed_kubernetes_versions="v1.24.0 v1.23.6 v1.22.9 v1.21.12 v1.20.15" _breeze_allowed_helm_versions="v3.6.3" -_breeze_allowed_kind_versions="v0.13.0" +_breeze_allowed_kind_versions="v0.14.0" _breeze_allowed_mysql_versions="5.7 8" _breeze_allowed_mssql_versions="2017-latest 2019-latest" _breeze_allowed_postgres_versions="10 11 12 13 14" diff --git a/dev/breeze/src/airflow_breeze/global_constants.py b/dev/breeze/src/airflow_breeze/global_constants.py index ba69486b6c916..4ed4c298ba230 100644 --- a/dev/breeze/src/airflow_breeze/global_constants.py +++ b/dev/breeze/src/airflow_breeze/global_constants.py @@ -51,7 +51,7 @@ ] ALLOWED_KUBERNETES_MODES = ['image'] ALLOWED_KUBERNETES_VERSIONS = ['v1.24.0', 'v1.23.6', 'v1.22.9', 'v1.21.12', 'v1.20.15'] -ALLOWED_KIND_VERSIONS = ['v0.13.0'] +ALLOWED_KIND_VERSIONS = ['v0.14.0'] ALLOWED_HELM_VERSIONS = ['v3.6.3'] ALLOWED_EXECUTORS = ['KubernetesExecutor', 'CeleryExecutor', 'LocalExecutor', 'CeleryKubernetesExecutor'] ALLOWED_KIND_OPERATIONS = ['start', 'stop', 'restart', 'status', 'deploy', 'test', 'shell', 'k9s'] @@ -227,7 +227,7 @@ def get_airflow_extras(): CURRENT_KUBERNETES_MODES = ['image'] CURRENT_KUBERNETES_VERSIONS = ['v1.24.0', 'v1.23.6', 'v1.22.9', 'v1.21.12', 'v1.20.15'] -CURRENT_KIND_VERSIONS = ['v0.13.0'] +CURRENT_KIND_VERSIONS = ['v0.14.0'] CURRENT_HELM_VERSIONS = ['v3.6.3'] CURRENT_EXECUTORS = ['KubernetesExecutor'] diff --git a/scripts/ci/libraries/_initialization.sh b/scripts/ci/libraries/_initialization.sh index 0df3fbf266839..c49ae1199e0a9 100644 --- a/scripts/ci/libraries/_initialization.sh +++ b/scripts/ci/libraries/_initialization.sh @@ -496,7 +496,7 @@ function initialization::initialize_kubernetes_variables() { CURRENT_KUBERNETES_MODES+=("image") export CURRENT_KUBERNETES_MODES # Currently supported versions of Kind - CURRENT_KIND_VERSIONS+=("v0.13.0") + CURRENT_KIND_VERSIONS+=("v0.14.0") export CURRENT_KIND_VERSIONS # Currently supported versions of Helm CURRENT_HELM_VERSIONS+=("v3.6.3")