Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ def delete_launch_template(template_name: str):
)

start_pod = EksPodOperator(
task_id="start_pod",
pod_name="test_pod",
task_id="run_pod",
pod_name="run_pod",
cluster_name=cluster_name,
image="amazon/aws-cli:latest",
cmds=["sh", "-c", "echo Test Airflow; date"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ def delete_launch_template(template_name: str):

# [START howto_operator_eks_pod_operator]
start_pod = EksPodOperator(
task_id="start_pod",
pod_name="test_pod",
task_id="run_pod",
pod_name="run_pod",
cluster_name=cluster_name,
image="amazon/aws-cli:latest",
cmds=["sh", "-c", "echo Test Airflow; date"],
Expand Down