Skip to content

Commit 3d017a2

Browse files
mhencleahecole
andcommitted
Pin perl version to 5.34.0 as latest doesn't work with the example. (#8319)
Co-authored-by: Leah E. Cole <[email protected]>
1 parent 3e94a27 commit 3d017a2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

composer/airflow_1_samples/kubernetes_pod_operator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
task_id='ex-pod-affinity',
143143
name='ex-pod-affinity',
144144
namespace='default',
145-
image='perl',
145+
image='perl:5.34.0',
146146
cmds=['perl'],
147147
arguments=['-Mbignum=bpi', '-wle', 'print bpi(2000)'],
148148
# affinity allows you to constrain which nodes your pod is eligible to
@@ -184,7 +184,7 @@
184184
task_id='ex-all-configs',
185185
name='pi',
186186
namespace='default',
187-
image='perl',
187+
image='perl:5.34.0',
188188
# Entrypoint of the container, if not specified the Docker container's
189189
# entrypoint is used. The cmds parameter is templated.
190190
cmds=['perl'],

composer/workflows/kubernetes_pod_operator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
task_id='ex-pod-affinity',
147147
name='ex-pod-affinity',
148148
namespace='default',
149-
image='perl',
149+
image='perl:5.34.0',
150150
cmds=['perl'],
151151
arguments=['-Mbignum=bpi', '-wle', 'print bpi(2000)'],
152152
# affinity allows you to constrain which nodes your pod is eligible to
@@ -188,7 +188,7 @@
188188
task_id='ex-all-configs',
189189
name='pi',
190190
namespace='default',
191-
image='perl',
191+
image='perl:5.34.0',
192192
# Entrypoint of the container, if not specified the Docker container's
193193
# entrypoint is used. The cmds parameter is templated.
194194
cmds=['perl'],

0 commit comments

Comments
 (0)