Skip to content

Commit 3b42299

Browse files
authored
Update README.md
1 parent 03617d5 commit 3b42299

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1530,7 +1530,11 @@ spec:
15301530
containers:
15311531
- name: echo
15321532
image: busybox
1533-
command: [for i in 9 8 7 6 5 4 3 2 1 ; do echo $i ; done]
1533+
command:
1534+
- "/bin/sh"
1535+
args:
1536+
- "-c"
1537+
- "for i in 9 8 7 6 5 4 3 2 1 ; do echo $i ; done"
15341538
```
15351539

15361540
使用命令和 Job 也基本保持一致,这里就不过多赘述。

0 commit comments

Comments
 (0)