This is an automated email from the ASF dual-hosted git repository.
kamilbregula pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git.
from 9344c34 Enable AWS Secrets Manager backend to retrieve conns using
different fields (#18764)
add ea8f478 Add AWS Fargate profile support (#18645)
No new revisions were added by this update.
Summary of changes:
.../aws/example_dags/example_eks_templated.py | 16 +-
....py => example_eks_with_fargate_in_one_step.py} | 63 +--
...oups.py => example_eks_with_fargate_profile.py} | 87 ++--
...y => example_eks_with_nodegroup_in_one_step.py} | 15 +-
.../example_dags/example_eks_with_nodegroups.py | 17 +-
airflow/providers/amazon/aws/hooks/eks.py | 196 ++++++++-
airflow/providers/amazon/aws/operators/eks.py | 317 +++++++++++---
airflow/providers/amazon/aws/sensors/eks.py | 115 ++++-
.../operators/eks.rst | 61 ++-
docs/spelling_wordlist.txt | 2 +
tests/providers/amazon/aws/hooks/test_eks.py | 463 ++++++++++++++++++++-
tests/providers/amazon/aws/operators/test_eks.py | 129 ++++--
tests/providers/amazon/aws/sensors/test_eks.py | 184 ++++++++
.../amazon/aws/utils/eks_test_constants.py | 37 +-
tests/providers/amazon/aws/utils/eks_test_utils.py | 66 ++-
15 files changed, 1543 insertions(+), 225 deletions(-)
copy airflow/providers/amazon/aws/example_dags/{example_eks_using_defaults.py
=> example_eks_with_fargate_in_one_step.py} (60%)
copy airflow/providers/amazon/aws/example_dags/{example_eks_with_nodegroups.py
=> example_eks_with_fargate_profile.py} (57%)
rename
airflow/providers/amazon/aws/example_dags/{example_eks_using_defaults.py =>
example_eks_with_nodegroup_in_one_step.py} (90%)
create mode 100644 tests/providers/amazon/aws/sensors/test_eks.py