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
4 changes: 2 additions & 2 deletions composer/airflow_1_samples/kubernetes_pod_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
task_id='ex-pod-affinity',
name='ex-pod-affinity',
namespace='default',
image='perl',
image='perl:5.34.0',
cmds=['perl'],
arguments=['-Mbignum=bpi', '-wle', 'print bpi(2000)'],
# affinity allows you to constrain which nodes your pod is eligible to
Expand Down Expand Up @@ -184,7 +184,7 @@
task_id='ex-all-configs',
name='pi',
namespace='default',
image='perl',
image='perl:5.34.0',
# Entrypoint of the container, if not specified the Docker container's
# entrypoint is used. The cmds parameter is templated.
cmds=['perl'],
Expand Down
4 changes: 2 additions & 2 deletions composer/workflows/kubernetes_pod_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
task_id='ex-pod-affinity',
name='ex-pod-affinity',
namespace='default',
image='perl',
image='perl:5.34.0',
cmds=['perl'],
arguments=['-Mbignum=bpi', '-wle', 'print bpi(2000)'],
# affinity allows you to constrain which nodes your pod is eligible to
Expand Down Expand Up @@ -188,7 +188,7 @@
task_id='ex-all-configs',
name='pi',
namespace='default',
image='perl',
image='perl:5.34.0',
# Entrypoint of the container, if not specified the Docker container's
# entrypoint is used. The cmds parameter is templated.
cmds=['perl'],
Expand Down