lates version of perl fails with the example code, need to use v5.34.0 (#34414)

* lates version of perl fails with the example code, need to use v5.34.0

* fix perl version in example job.yaml, is not working with actual latest
This commit is contained in:
Mike Hummel
2022-07-21 19:23:54 +02:00
committed by GitHub
parent 1a2958a4dd
commit a15cc475d8
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ spec:
spec:
containers:
- name: pi
image: perl:5.34
command: ["perl", "-Mbignum=bpi", "-wle", "'print bpi(2000)'"]
image: perl:5.34.0
command: ["perl", "-Mbignum=bpi", "-wle", "print bpi(2000)"]
restartPolicy: Never
backoffLimit: 4